-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (37 loc) · 1.66 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
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather App</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="main.css">
<link rel="shortcut icon" href="Images/Weather.ico" type="image/x-icon">
<link rel="manifest" href="./manifest.json">
</head>
<body onload="SplashScreen()">
<!--==========================Splash screen==================================-->
<div class="Splash">
<img src="Images/Splash_Logo.svg" class="Splash_logo"><br>
<h2>Weather App</h2>
</div>
<center>
<div class="Details mt-5"><br>
<span><img src="Images/sun.svg" height="130px" width="130px" id="Body_Icon"></span><br>
<h1 class ="Temp_Body py-2 mt-1">22</h1>
<h2 class ="City_Body py-2">Mumbai</h2>
<h3 class ="Desc_Body py-1">Clear</h3>
</div>
</center>
<form class="container-fluid ">
<div class="form-group d-flex justify-content-center mt-4">
<input type="text" class="form-control w-50 text-center" id="CityName" placeholder="Enter city name" >
</div>
<center><h5 class="error">City Not found</h5></center>
<div class="form-group d-flex justify-content-center">
<button type="submit" class="mybtn d-flex justify-content-center" id="Submit">Submit</button>
</div>
</form>
<script src="app.js"></script>
</body>
</html>