-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (27 loc) · 925 Bytes
/
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
<!DOCTYPE html>
<head>
<title>weather app</title>
<link rel="stylesheet" href="Style.css" />
</head>
<body>
<h1> </h1>
<form id="search-form">
<input type="search" placeholder="Enter City Name"
id="search-input" required autocomplete="off" />
<button id="search-button">Search</button>
</form>
<main id="app-container">
<div id="location">
<p>-------</p>
</div>
<div id="temp">
<img id="temp-icon" 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>