-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (51 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./public/css/starter.css" id="css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
<link rel="shortcut icon" href="./public/img/logo.png" type="image/png">
<title>Weather</title>
</head>
<body>
<div class="container">
<h1 id="alert" style="color: red;"></h1>
<div class="upperBox">
<div class="time">
<p id="currentTime"></p>
<div class="sunTime">
<p id="sunrise"></p>
<p id="sunset"></p>
</div>
</div>
<div class="icon">
</div>
<div class="upperBoxBottom">
<div class="temp">
</div>
<div class="status-location">
<div class="status">
</div>
<div class="location">
</div>
</div>
<div class="date">
</div>
</div>
</div>
<div class="lowerBox">
<div class="feelsLike">
</div>
<div class="pressure">
</div>
<div class="visibility">
</div>
<input type="text" class="cityName" placeholder="Search weather of any your city...">
<input type="submit" class="searchBtn" value="Search">
</div>
</div>
<script src="./public/js/main.js"></script>
</body>
</html>