-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (83 loc) · 3.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather App</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&family=Satisfy&display=swap"
rel="stylesheet">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<link rel="stylesheet" href="./src/index.css">
</head>
<body>
<section class="container">
<!-- weather header -->
<section class="container-inner">
<h1>Weather Today🌥</h1>
<p>Choose your area 🌏</p>
</section>
<!-- weather details -->
<section class="weather-app">
<!-- weather temp & time-->
<section class="row" id="content">
<span class="weather_status">
<p class="temp"></p>
<img src="https://shecodes-assets.s3.amazonaws.com/api/weather/icons/mist-night.png" id="icon"/>
<p class="content"></p>
</span>
<span class="time_status">
<p class="location">
</p>
<p class="the_date">
</p>
</span>
</section>
<!-- weather search -->
<div class="input-group mb-3 col-xs-12 col-sm-12 col-md-8" id="search">
<span class="input-group-text" id="basic-addon1">
<i class="bi bi-geo-alt" style="color:white"></i>
<i class="bi bi-geo-alt"></i>
</span>
<input type="text" class="form-control" id="city_search" placeholder="Search Location...">
<button class="btn btn-outline-secondary" type="button" id="button-addon2">Search</button>
</div>
<!-- weather speed, etc -->
<section class="container text-left" id="three_col">
<div class="row align-items-start">
<div class="col" id="wind">
<i class="bi bi-wind"></i>
<p class="pressure_val"></p>
<p class="pressure_lab">Pressure</p>
</div>
<div class="col" id="uv">
<i class="bi bi-brightness-high"></i>
<p class="wind_val"></p>
<p class="wind_lab">Wind Speed</p>
</div>
<div class="col" id="humidity">
<i class="bi bi-moisture"></i>
<p class="hum_val"></p>
<p class="hum_lab">Humidity</p>
</div>
</div>
</section>
<!-- weather forecast -->
<section id="forecast">
</section>
<!-- footer -->
<!-- <p class="footer">
<a href="https://github.com/oghene-ella/Weather_App">
My Github Repository 🥷🏾
</a>
<br>Created by Oghenekaro Emmanuella🥷🏾❤️
</p> -->
</section>
</section>
<script src="./src/index.js"></script>
</body>
</html>