-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 1.17 KB
/
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
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Stargrid</title>
</head>
<body>
<div class="container" id="container">
<!--Clock-->
<div class="card">
<h1 id = time></h1>
<h3 id= date></h3>
</div>
<!--Weather-->
<div class="card weather">
<img
id="weather-icon"
src = "/icons/weather/unknown.png"
alt = "Weather info"
/>
<h1 id = "weather-temp"></h1>
</div>
<!--Links and icons are automaticaly generated by tiles.js-->
</div>
<script src="settings.js"></script> <!--contains global settings-->
<script src="js/time.js"></script> <!--contains clock script-->
<script src="js/weather.js"></script> <!--get's weather from openweathermap and sets icon and text-->
<script src="js/tiles.js"></script> <!--generates tiles based on settings.js-->
<script src="js/wallpaper.js"></script> <!--script to change the wallpaper based on time-->
</body>
</html>