Move script tag to head

master^2
TheodorSmall 2022-01-06 17:13:03 +00:00
parent ceb5f2091b
commit 8612f2bd59
No known key found for this signature in database
GPG Key ID: F1603B4FE29389B1
1 changed files with 1 additions and 1 deletions

View File

@ -4,10 +4,10 @@
<meta charset="utf-8">
<title>Digital Clock</title>
<link rel="stylesheet" href="base.css">
<script src="main.js" defer></script>
</head>
<body>
<div id="clock">
<noscript><p>Please enable JavaScript to use this page.</p></noscript>
</div>
<script src="main.js"></script>
</html>