-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (32 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="Author" content="Pritam Debnath">
<title>Weather app</title><link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Courgette&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="appMain">
<div class="inputSearchBox">
<input class="input" id="input" placeholder="Search for location" />
</div>
<form class="appBody" id="form">
<div class="locationData">
<div class="city" id="city"></div>
<div class="date" id="date"></div>
</div>
<div class="weatherStatus">
<div class="temp" id="temp">25°c</div>
<div class="minMax" id="minMax"></div>
<div class="weatherType" id="weatherType"></div>
<img id="img" src="" class='img' alt="icon" />
</div>
</form>
</div>
<script src="./script.js"></script>
</body>
</html>