-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (43 loc) · 1.86 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
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="description" content="A Clean and Simple Startpage." />
<title> New Tab</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"
integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g=="
crossorigin="anonymous"
referrerpolicy="no-referrer">
</script>
</script>
<link rel="stylesheet dns-prefetch" href="css/style.css" />
<link rel="icon" type="image/x-icon" href="/img/favicon.ico">
</head>
<body>
<div class="container">
<div id="greetings"></div>
<div class="weather">
<div class="weather-icon">
<img alt="Weather Icon" src="icons/unknown.png" />
</div>
<div class="temperature-value">
<p>- °</p>
</div>
<div class="temperature-description">
<p></p>
</div>
</div>
<div class='quote-description'>
<p id='random_quote'></p>
</div>
</div>
<script rel="preconnect" src="js/quote.js"></script>
<script rel="preconnect" src="js/weather.js"></script>
<script rel="preconnect" src="js/wallpaper.js"></script>
<script rel="preconnect" src="js/greeting.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
</body>
</html>