-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (90 loc) · 3.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/axios.min.js"></script>
<title>Weather App</title>
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor"
crossorigin="anonymous"
/>
<!-- CSS stylesheet -->
<link rel="stylesheet" href="src/styles.css" />
<!-- Font awesome -->
<script
src="https://kit.fontawesome.com/8ea8d3b22a.js"
crossorigin="anonymous"
></script>
</head>
<body>
<video id="background-video" autoplay loop muted >
<source src="images/live-weather-background.mp4" type="video/mp4">
</video>
<div class="container">
<div class="weatherapp">
<form id="search-form">
<div class="row searchEngine">
<div class="col-9">
<input
type="text"
name="city"
id="city-input"
placeholder="Type a city name"
class="form-control"
autocomplete="off"
/>
</div>
<div class="col-3" id="search-button-section">
<input
type="submit"
class="btn btn-primary search-button"
value="Search"
id="search-button"
/>
</div>
</div>
</form>
<div class="weather-info">
<h1 id="cityName"></h1>
<h2 id="country"></h2>
<ul class="weather-state">
<li>Last updated: <span id="date"></span></li>
<li id="description"></li>
</ul>
</div>
<div class="row temperature-info">
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="d-flex weather-temperature">
<img src="" alt="#" id="icon" />
<strong id="temperature">26</strong>
<span class="unit">
<a href="#" id="celsius-link" class="active">°C</a> |
<a href="#" id="fahrenheit-link">°F</a>
</span>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<ul class="weather-data-section">
<li>Wind speed: <span id="wind" class="weather-data"></span>km/h</li>
<li>Feels like: <span id="feels-like" class="weather-data"></span>°C</li>
<li>Humidity: <span id="humidity" class="weather-data"></span>%</li>
</ul>
</div>
</div>
<div class="weather-forecast" id="forecast">
<div class="row text-center"></div>
</div>
<div class="attribution"> This project was coded by Adetutu Oluwasanmi and is hosted on
<a href="https://github.com/adetutudeborah/weather-app" target="_blank">GitHub</a>
</div>
</div>
</div>
</div>
<script src="src/script.js"></script>
</body>
</html>