<pclass="text_container"> Hello <spanid="player_name"></span>. It's Saturday morning. You are at the park waiting for your friend Amanda. She seems to be really late.
You spot a copy of today's newspaper on the bench close to you. Maybe you want to <ahref="1_newspaper.html">give it a read</a>. You can <ahref="1_walk.html">go for a little walk</a> or just <ahref="1_amanda.html">wait for Amanda</a> if you feel like it. </p>
<scriptsrc="jquery.min.js"></script>
<script>
//get player avatar from local storage
console.log (localStorage.myavatar)
var img = document.createElement("img");
img.src = localStorage.myavatar;
var player_img = document.querySelector("#player_img");