-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (43 loc) · 1.82 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
<!--v.1.1-->
<!-- ///What's New////////
1- Re-build the app with OOP JS technique, which increase from the app performance.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>What Weather | Smart Forecast Around The World</title>
</head>
<body>
<div class="container my-5 mx-auto">
<h2 class="text-muted text-center my-4">What Weather</h2>
<form class="my-4 text-center text-muted">
<label for="city">Enter a Location Name for Weather Information</label>
<input type="text" name="city" class="form-control p-4" autocomplete="off">
<p class="error d-none my-2" style="color:crimson;">Wrong Location</p>
</form>
<div class="card shadow-lg rounded d-none">
<img src="https://via.placeholder.com/400x300" class="card-img-top time">
<div class="icon mx-auto text-center bg-light">
<img src="">
</div>
<div class="details text-center text-muted text-uppercas">
<h5 class="my-3">London</h5>
<div class="my-3">Cloudy</div>
<div class="my-3 display-4">
<span>16</span><span>°C</span>
</div>
</div>
</div>
</div>
<footer>
<span>@ All Copyrights are reserved 2020</span>
<p>Developed by _ <span>HaWaRy</span>_</p>
</footer>
<script src="js/fetch.js"></script>
<script src="js/main.js"></script>
</body>
</html>