Assignment Instructions: Create two additional pages for your website. This should result in a homepage, with three additional pages. One, contact.html, you created earlier in this module. Add two oth

<script type="text/javascript">

$(document).ready(function(){

var today = new Date();

var date = today.getFullYear()+'-'+(today.getMonth()+1)+'-'+today.getDate();

var day = today.getDate();

$('#date').html(date);

$('#day').html(day);

var fname = sessionStorage.getItem("fname");

var lname = sessionStorage.getItem("lname");

var location = sessionStorage.getItem("location");

$("#greetings").html('Hi, '+''+fname +''+''+lname +''+ ' The weather is hot in ' +''+ location);

});

</script>