-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.94 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
<!DOCTYPE html>
<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">
<script src="https://cdn.jsdelivr.net/npm/places.js@1.19.0"></script>
<link rel="shortcut icon" href="asset/fabicon.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Abel&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Today's Weather</title>
</head>
<body>
<video autoplay muted loop id="myVideo">
<source src="asset/BG-2.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<main>
<div class="container">
<form class="col-md-6 m-auto py-5">
<div class="input-group mb-3">
<input type="text" id="city" class="form-control" placeholder="Enter a location for Weather ...">
<div class="input-group">
<br><br><button type="button" class="btn btn-success col-md-3 m-auto" id="search_button">Search</button>
</div>
</div>
</form>
<div class="weather-status text text-center">
<img id="icon" src="" alt="">
<h1 id="show_city"></h1>
<h3><span id="show_temperature"></span>°C</h3>
<h1 id="weather_status" class="lead"></h1>
</div>
</div>
</main>
<footer>
<div class="text-center">
<hi class="lead">Develop By <a href="https://www.linkedin.com/in/ekramasif/">Ekram Asif</a></hi>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>