-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
170 lines (144 loc) · 6.81 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<!--FAVICON-->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!--FONT AWESOME-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.14.0/css/all.css" integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc" crossorigin="anonymous">
<title>WeatherUp</title>
</head>
<body>
<!-- ! remove html parents and css selectors that aren't needed-->
<!-- ! MAKE CITY CARDS SMALLER-->
<div class="current-temp-side">
<div class="current-icon">
<img class="showcase-icon" src="" alt="">
<p class="current-conditions"></p>
</div>
<div class="current-temp ">
<p class="current-temp-showcase"></p>
<span>°F</span>
</div>
</div>
<div class="loading">
</div>
<div class="main-container">
<header class="showcase-container">
<div class="video-container ">
<video class="showcase-video" src="https://res.cloudinary.com/dev-sandbox/video/upload/v1606797204/weather-up/Palm_Trees_Swaying_With_The_Wind_qgspet.mp4" autoplay muted loop playsinline >
</video>
</div>
<div class="header-content content">
<div class="location">
<i class="fas fa-map-marker-alt fa-lg"></i>
<h1> <span class="showcase-location"></span><i class="fas fa-sync-alt "></i></h1>
</div>
<div class="temp">
<h2 class="current-temp-showcase-2"></h2>
<img class="showcase-icon-2" src="" alt="">
<p class="current-conditions-2"></p>
</div>
</div>
</header>
<!--3 DAY FORECAST-->
<div class="forecast">
<div class="forecast-container">
<p class="forecast-heading"> <span class="forecast-heading-bold"> 3 Day </span>Forecast </p>
<div class="forecast-card forecast-day-1">
<img class="weather-icon-1 weather-icon"></img>
<div class="forecast-text">
<p class="day"></p>
<p class="conditions"></p>
</div>
<div class="forecast-num">
<p></p>
</div>
</div>
<div class="forecast-card forecast-day-2">
<img src="" alt="" class="weather-icon-2 weather-icon">
<div class="forecast-text">
<p class="day "></p>
<p class="conditions"></p>
</div>
<div class="forecast-num">
<p> </p>
</div>
</div>
<div class="forecast-card forecast-day-3">
<img src="" alt="" class="weather-icon-3 weather-icon">
<div class="forecast-text">
<p class="day "></p>
<p class="conditions"></p>
</div>
<div class="forecast-num">
<p> </p>
</div>
</div>
</div>
</div>
<!--TODAYS HIGHLIGHTS-->
<div class="highlights">
<p class="highlights-heading">Today's <span class="highlights-heading-bold"> Highlights</span></p>
<div class="highlights-container">
<!--HIGHLIGHTS COLUMN 1-->
<div class="highlights-1">
<!--UV INDEX-->
<div class="highlights-card">
<p class="highlights-card-heading">UV Index<i class="fas fa-seedling fa-xs"></i></p>
<div class="uv-index">
<div class="uv-index-progress">
<p><span class="uv-index-text"></span><i class="fas"></i></p>
</div>
</div>
</div>
<!--WIND SPEED-->
<div class="highlights-card wind">
<p class="highlights-card-heading">Wind Speed<i class="fas fa-wind fa-xs"></i></p>
<div class="wind-speed">
<p> <span></span> MPH</p>
</div>
<p class="wind-direction"> <i class="fas fa-location-arrow"></i> <span class="wind-direction-data"></span> </p>
</div>
</div>
<!--HIGHLIGHTS COLUMN 2-->
<div class="highlights-2">
<!--HUMIDITY-->
<div class="highlights-card humidity">
<p class="highlights-card-heading">Humidity<i class="fas fa-tint fa-xs"></i></p>
<div class="humidity-text">
<p><span></span>%</p>
</div>
</div>
<!--SUNRISE & SUNSET-->
<div class="highlights-card sunrise-sunset">
<p class="highlights-card-heading">Sunrise & Sunset<i class="fas fa-xs"></i></p>
<div class="sunrise-sunset-text">
<p><i class="far fa-arrow-alt-circle-up fa-lg"></i>Sunrise<span class="sunrise-text"></span>AM</p>
<p><i class="far fa-arrow-alt-circle-down fa-lg"></i>Sunset<span class="sunset-text"></span>PM</p>
</div>
</div>
</div>
</div>
</div>
<!--CITIES SECTION WITH DIFFERENT LOCATIONS-->
<div class="cities">
<!-- ADD LOCATION WITH FIRST DIV-->
<div class=" cities-selection add"> <!--cities-selection -->
<form class="cities-selection-form">
<input type="text" class="cities-selection-add-location" placeholder="Add Location">
<button type="submit" class="location-button">
<i class="fas fa-plus-square fa-2x"></i>
</button>
</form>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>