-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.64 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
<!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">
<title>Document</title>
<link rel="stylesheet" href="https://bootswatch.com/5/morph/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container mx-auto">
<h1 class="h1 text-bold mt-4 text-center ">Weather Forcast</h1>
<div class="alert alert-danger"></div>
<div class="form-group mt-4 d-sm-flex mx-auto justify-content-center">
<form class="form d-sm-flex">
<input type="text" class="form-control col-md-9 col-sm-10 cityInput" placeholder="eg. Tokyo">
<input type="submit" class="btn btn-primary form-control">
</form>
</div>
<div class="outline mt-5 weather-report shadow ">
<articles class="parameter">
<h6 class="mt-2">Country : <span class="country">5</span></h6>
<h6 class="mt-2">Temperature : <span class="temp">5</span> <span class="h6">℃</span></h6>
<h6 class="mt-2">Humidity : <span class="humidity">5</span> </h6>
<h6 class="mt-2">Climate : <span class="climate">5</span> </h6>
<h6 class="mt-2">Pressure : <span class="pressure">5</span> </h6>
<h6 class="mt-2">Windspeed(mph) : <span class="wind">5</span> </h6>
</articles>
<img src="" alt="climate" class="img">
</div>
</div>
<script src="app.js"></script>
</body>
</html>