-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
34 lines (34 loc) · 990 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<script src="main.js"></script>
<!-- <link href="https://www.dafontfree.net/embed/bWV0cm9wb2xpcy1leHRyYS1ib2xkJmRhdGEvNTIvbS8xNTY3OTIvTWV0cm9wb2xpcy1FeHRyYUJvbGQub3Rm" rel="stylesheet" type="text/css"/> -->
<title>Document</title>
</head>
<body onload="main()">
<div class="bg-image"></div>
<div class="content">
<div id="date">
<div id="month"></div>
<div id="monthDay"></div>
<div id="day"></div>
</div>
<div class="line"></div>
<br>
<div id="time">
<span id="hour"></span>
<span id="min"></span>
</div>
<br>
<div id="welcome"></div>
<div id="weather">
<div id="description"></div>
<h1 id="temp"></h1>
<div id="location"></div>
</div>
<br>
<div class="line"></div>
</div>
</body>
</html>