Untitled
2 years ago in Plain Text
<!DOCTYPE html>
<html>
<h1 style="font-size:15vw;font-family: Arial"> <p><center><b>
<script>
currentdate = new Date();
var oneJan = new Date(currentdate.getFullYear(),0,1);
var numberOfDays = Math.floor((currentdate - oneJan) / (24 * 60 * 60 * 1000));
var result = Math.ceil(( currentdate.getDay() + 1
+ numberOfDays) / 7);
document.write(result); </script>
</p></h1></center></b>
</html>