-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (42 loc) · 1.77 KB
/
index.html
File metadata and controls
47 lines (42 loc) · 1.77 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="A simple weather app made using HTML, CSS, and JavaScript">
<meta name="author" content="Abhinab Pratap Singh Chauhan">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./weather-images/favicon.ico">
<link rel="stylesheet" href="./weather-style.css">
<title>Climaticca</title>
</head>
<body>
<div class="heroText">
Climatica
<p>Enter your city name <br>to know about it's weather.</p>
</div>
<div class="hero">
<div class="searchBox">
<input type="text" class="inputBox" id="inputBox" placeholder="Enter city name..." autocomplete="off">
</div>
<div class="weatherDetails">
<div class="date" id="date">
</div>
<div class="weatherStatus">
<div class="temperature" id="temperature">
</div>
<div class="humidity" id="humidity">
</div>
<div class="wind" id="wind">
</div>
<div class="weather" id="weather">
</div>
<div class="weather-icon">
<img src="http://openweathermap.org/img/wn/01d@2x.png" id="weather-icon">
</div>
</div>
</div>
</div>
<script src="./weather-app.js"></script>
</body>
</html>