-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathV.html
More file actions
31 lines (30 loc) · 1.02 KB
/
V.html
File metadata and controls
31 lines (30 loc) · 1.02 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Another one!</title>
<link rel="stylesheet" href="css/V.css">
<script src="/js/V.js" defer></script>
</head>
<body>
<div class="card">
<div class="search">
<input type="text" class="search-bar" placeholder="search">
<button>Search</button>
</div>
<div class="weather loading">
<h2 class="city">Weather in City</h2>
<h1 class="temp">40°C</h1>
<div class="flex">
<img src="https://openweathermap.org/img/wn/04n.png" alt="" class="icon" />
<div class="description">Cloudy</div>
</div>
<div class="humidity">Humidity: 50%</div>
<div class="wind">Speed: 6.0 km/h</div>
</div>
</div>
</body>
</html>