-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.62 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
<!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">
<!-- framework for building responsive, mobile-first sites -->
<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>weather app</title>
</head>
<body>
<div class="container my-5 mx-auto">
<h1 class="text-muted text-center">WEATHER</h1>
<form class="my-4 text-center text-muted">
<label for="city">write down here name of a city</label>
<input type="text" name="city" class="form-control p-4">
</form>
<div class="card shadow-lg rounded d-none">
<div class="text-muted text-center details">
<img class="card-img-top" src="./img/dayimage.png" alt="">
<h5 class="my-3">Name of City</h5>
<div class="my-3">current weather</div>
<div class="display-4 my-4">
<span></span>
<span>°C</span>
</div>
</div> <!-- card-text box -->
</div> <!-- card box -->
</div> <!-- container -->
</body>
<script type="text/javascript" src="apikey.js"></script>
<script src="./scripts/forecast.js"></script>
<!-- <script src="./scripts/async.js"></script> -->
<script src="./scripts/app.js"></script>
</html>