-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (35 loc) · 1.06 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
<!DOCTYPE html>
<html>
<title>Weather app</title>
<head>
<link rel="stylesheet" href ="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<form id="search-form">
<input type="search"
placeholder="Enter City Name"
id="search-input"
required
autocomplete="off"
/>
<br>
</br>
<button id="search-button">Search</button>
</form>
<main id="app-container">
<div id="location">
<p>-------</p>
</div>
<div id="temp">
<img id="temp-icon" src="./downloads/clouds.png" alt="">
<p><span id="temp-value">-----</span> <span id="temp-unit" >°c</span> </p>
</div>
<div id="climate">
<p>------</p>
</div>
</main>
<script src="script.js">
</script>
</body>
</html>