-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathweatherApp.html
40 lines (31 loc) · 959 Bytes
/
weatherApp.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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather</title>
<link rel="stylesheet" href="css/weatherApp.css">
</head>
<body>
<main>
<div class="row" style="text-align: center;">
<form action="">
<input type="search" name="" id="search" placeholder="Search by City name">
</form>
</div>
<div class="row" id="weather">
<!-- AA aapa Comment out v krr skde -->
<!-- <div>
<img src="https://openweathermap.org/img/wn/04n@2x.png" alt="">
</div> -->
<div>
<h2>23 °C</h2>
<h4>Clear</h4>
</div>
</div>
</main>
<h1>Testing for GIT</h1>
<script src="js/weatherApp.js"></script>
</body>
</html>