-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (73 loc) · 2.41 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Weather app</title>
<meta property="og:title" content="Weather app " />
<meta property="og:image" content="preview.png" />
<meta
property="og:description"
content="Weather App Using OpenWeatherAPI"
/>
<meta property="og:url" content="https://kind-yalow-3e94ab.netlify.app/" />
<link rel="stylesheet" href="style.css" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
</head>
<body class="atmosphere" id="background">
<div class="container px-2 py-2">
<div class="d-flex justify-content-center">
<input
type="text"
autocomplete="off"
class="col search-box"
placeholder="Search for a city ..."
/>
</div>
<div class="temp h1 px-2 py-2 text-center my-4">
0<span>°C</span>
</div>
</div>
<div class="container"></div>
<div class="location py-3">
<h1 class="city d-flex justify-content-center">City</h1>
<h2 class="date d-flex justify-content-center">
Tuesday 15 December 2020
</h2>
</div>
<div class="container px-2 py-5 wheat">
<div class="row row-cols-md-3 row-cols-1">
<div class="col card-ouline current text-center">
<div class="card-body">
<h2 class="feels-like">Feels Like: 0<span>°C</span></h2>
<h2 class="hi-low">13°C / 16°C</h2>
<h2 class="weather">Sunny</h2>
</div>
</div>
<div class="col card-outline">
<div class="card-body text-center">
<h1 class="icon">
<img
src="http://openweathermap.org/img/wn/10d@4x.png"
alt="icon"
class="glass"
/>
</h1>
</div>
</div>
<div class="col card-outline sun text-center">
<div class="card-body">
<h2 class="sunrise">Sunrise:</h2>
<h2 class="sunset">Sunset:</h2>
<h2 class="humidity">Humidity:</h2>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>