-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 1.13 KB
/
Copy pathindex.html
File metadata and controls
33 lines (29 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="Assest/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<title>Weather App | Hossein Yadegarnia</title>
</head>
<body>
<center><div class="weather" id="weather">
<h2>Weather App</h2>
<div class="search">
<input type="text" placeholder="Enter The City Name..." id="city-name">
<button class="btn-search" onclick="searchWeather()"><i class="fa-solid fa-magnifying-glass"></i></button>
</div>
<div class="result" id="result">
<img src="" alt="mode" id="image">
<h1 id="deg">22℃</h1>
<h3 id="mode">Cloud</h3>
<br>
<h2 id="speed"></h2>
</div>
</div></center>
</body>
<script src="app.js"></script>
<script src="https://kit.fontawesome.com/3813a0f9ce.js" crossorigin="anonymous"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
</html>