-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (104 loc) · 4.75 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!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 rel="stylesheet" href="style.css">
<title>Weather APP using Vanilla JS</title>
</head>
<body>
<div class="container">
<div class="weather-side">
<div class="weather-gradient"></div>
<div class="date-container">
<h2 class="date-dayname">Saturday</h2>
<span class="date-day">---</span>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-map-pin location-icon">
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path>
<circle cx="12" cy="10" r="3"></circle>
</svg>
<span class="location">
<span class="city">-</span>,
<span class="country">-</span>
</span>
</div>
<div class="weather-container">
<i class="weather-icon" data-feather="sun"></i>
<h1 class="weather-temp">-°C</h1>
<h3 class="weather-desc">Sunny</h3>
</div>
</div>
<div class="info-side">
<div class="today-info-container">
<div class="today-info">
<div class="precipitation">
<span class="title">Feels Like</span>
<span class="value">- %</span>
<div class="clear"></div>
</div>
<div class="humidity">
<span class="title">Humidity</span>
<span class="value">- %</span>
<div class="clear"></div>
</div>
<div class="wind">
<span class="title">Wind</span>
<span class="value">- km/h</span>
<div class="clear"></div>
</div>
</div>
</div>
<div class="week-container">
<div class="next-days">Next 4 Days</div>
<ul class="days-list">
<li class="">
<img src="//openweathermap.org/img/wn/03d@2x.png" title="Icon" />
<span class="day-name">Sat</span>
<span class="day-temp">--°C</span>
</li>
<li>
<img src="//openweathermap.org/img/wn/03d@2x.png" title="Icon" />
<span class="day-name">Sat</span>
<span class="day-temp">--°C</span>
</li>
<li>
<img src="//openweathermap.org/img/wn/03d@2x.png" title="Icon" />
<span class="day-name">Sat</span>
<span class="day-temp">--°C</span>
</li>
<li>
<img src="//openweathermap.org/img/wn/03d@2x.png" title="Icon" />
<span class="day-name">Sat</span>
<span class="day-temp">--°C</span>
</li>
<div class="clear"></div>
</ul>
</div>
<div class="location-container">
<button class="location-button">
<i data-feather="map-pin"></i>
<span>Change location</span>
</button>
</div>
</div>
</div>
<div class="location-select modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<div class="form-fields">
<div class="input-wrapper city-input">
<label for="">City <small>[e.g: "Dhaka", "Paris", "California" etc]</small></label>
<input type="text" value="">
</div>
</div>
<button class="update-weather">Update</button>
</div>
</div>
<script src="weather.js"></script>
<script src="ui.js"></script>
<script src="storage.js"></script>
<script src="app.js"></script>
</body>
</html>