-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (26 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather API</title>
<script src="https://cdn.jsdelivr.net/npm/axios@1.1.2/dist/axios.min.js"></script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<h1>Weather App</h1>
<form action="" id="form">
<label for="search input">Search Weather Of Any Place</label><br><br>
<input type="text" id="userinput" placeholder="enter place name.."> <button type="submit"><i class="fa-sharp fa-solid fa-magnifying-glass"></i></button>
</form>
<div id="temp">
</div><br><br>
<div id="container">
<div id="humid"></div>
<div id="wspeed"></div>
<div id="press"></div>
</div>
<script src="main.js"></script>
</body>
</html>