-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" sizes="128x128" href="icon.png" />
<title>Weather App</title>
<link rel="stylesheet" href="index.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@1,100&family=Open+Sans:ital@1&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="card">
<div class="search">
<input type="text" class="search-bar" placeholder="Search" />
<button>
<svg
stroke="currentColor"
fill="currentColor"
stroke-width="0"
viewBox="0 0 24 24"
height="1.5em"
width="1.5em"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill="none"
stroke="#000"
stroke-width="2"
d="M15,15 L22,22 L15,15 Z M9.5,17 C13.6421356,17 17,13.6421356 17,9.5 C17,5.35786438 13.6421356,2 9.5,2 C5.35786438,2 2,5.35786438 2,9.5 C2,13.6421356 5.35786438,17 9.5,17 Z"
></path>
</svg>
</button>
</div>
<div class="weather loading">
<h2 class="city">Weather in Myanmar</h2>
<h2 class="temp">21°C</h2>
<div class="flex">
<img src="" alt="" class="icon" />
<div class="description">Cloudy</div>
</div>
<div class="humidity">Humidity : 60%</div>
<div class="wind">Wind Speed : 6.2 km/h</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>