-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (55 loc) · 3.37 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Weather App</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Boot Strap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-uWxY/CJNBR+1zjPWmfnSnVxwRheevXITnMqoEIeG1LJrdI0GlVs/9cVSyPYXdcSF" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body class="custom-dark" style="font-family: 'anthropocene', sans-serif;">
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<header class="mt-4"></header>
<main>
<section class="container d-none">
<div class="row h-75">
<div class="col border border-dark"></div>
<div class="col-10 col-md-8 col-lg-6 custom-fade-border px-0" id="middle-container">
<div class="d-flex justify-content-center align-items-center py-4 custom-section-border custom-beige-text" id="icon-switch"></div>
<div id="weather-info" class="h6 custom-mono custom-fade-text">
<div class="mb-auto p-4">
<ul class="list-unstyled" id="resultList">
<li><p id="temp">Temperature: <span id="tempValue"></span></p></li>
<li><p><span id="current-date"></p></span></li>
<li><p id="wind">Wind: <span id="windValue"></span></p></li>
<li><p id="rain">Rain: <span id="rainValue"></span></p></li>
<li><p id="humidity">Humidity: <span id="humValue"></span></p></li>
<li><p id="uv-index">UV Index: <span id="uviValue"></span></p></li>
</ul>
</div>
</div>
<div class="list-group" id="tempContainer">
</div>
</div>
<div class="col border border-dark"></div>
</div>
</section>
</main>
<footer></footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Bootstap Js for Nav Collapse -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="assets/js/anthropocene.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>