-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (61 loc) · 2.18 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
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Find the most current weather forecast of any city worldwide.
It can predict the conditions of the atmosphere for a given location and time."
/>
<meta
name="keywords"
content="weather-app, weather forecast, weather app, mohasin-hossain"
/>
<meta name="author" content="Mohasin Hossain" />
<!-- Links -->
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles.css" />
<script
src="https://kit.fontawesome.com/1270dba9e7.js"
crossorigin="anonymous"
></script>
<title>Weather App</title>
</head>
<body>
<div class="container my-5 mx-auto">
<h1 class="text-center my-4 text-info">
Weather App<i class="fas fa-cloud-sun-rain text-warning"></i>
</h1>
<form class="change-location my-4 text-muted text-center">
<label for="city">Enter a location for weather information</label>
<input type="text" name="city" class="form-control p-4" />
</form>
<div class="card shadow-lg rounded d-none">
<img
src="https://via.placeholder.com/400x300"
class="time card-img-top"
/>
<div class="icon bg-light mx-auto text-center">
<img src="" alt="" />
</div>
<div class="text-muted text-uppercase text-center details">
<h5 class="my-3">City name</h5>
<div class="my-3">Weather conditions</div>
<div class="display-4 my-4">
<span>temp</span>
<span>°</span>
</div>
</div>
</div>
</div>
<script src="scripts/forecast.js"></script>
<script src="scripts/app.js"></script>
</body>
</html>