-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (53 loc) · 2.44 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>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css2?family=Monoton&family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="queries.css">
<link rel="stylesheet" href="style.css">
<title>GlobalWeather</title>
</head>
<body>
<section>
<div class="global">
<div class="main">
<div class="image">
<img class="globalweather" src="img/GlobalWeather.png" alt="GlobalWeather">
<div class="search">
<input class="cityInput" type="text" id="typedCity" placeholder="Type your city">
<button class="addBtn" id="addcity" onclick="addCity()"><span class="iconify" data-inline="false" data-icon="bx:bx-search-alt-2"></span></button>
</div>
</div>
<div class="city">
<h1 id="cityname"></h1>
<p class="time" id="days"></p>
</div>
</div>
<div class="content">
<div class="icon">
<div class="timer">
<span class="iconify" data-inline="false" data-icon="et:clock"></span>
<p class="hour" id="watch">11:25</p>
</div>
<div class="sun">
<p class="sun-temp" id="sunrise"></p>
<p class="sun-temp" id="sunset"></p>
</div>
</div>
<div class="clock">
<p class="descDay" id="desc"></p>
<div class="icon-div" id="icons">
<img src="" class="icon-weather">
</div>
<!--<span class="iconify" data-inline="false" data-icon="carbon:ibm-cloud" id="icon"></span>-->
<p class="temperatureDay" id="temperature"></p>
</div>
</div>
</div>
</section>
<script src="https://code.iconify.design/1/1.0.6/iconify.min.js"></script>
<script src="script.js"></script>
</body>
</html>