-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width , initial-scale=1.0" >
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script
src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="
crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Weather API</title>
<link rel="stylesheet" href="styles.css">
</head>
<body class="text-center mt-5 bg-dark text-white">
<h1 class="mb-3"> <i>Know Weather of any City Here </i></h1>
<div class="input">
<input type="text" class="inputValue col-xl-6 col-lg-6 col-md-8 col-sm-8 col-xm-9 ml-1 mt-3 mb-3 font-weight-bold" placeholder="Enter City">
<br>
<input type="submit" value="submit" class="button bg-primary text-white">
</div>
<div class="display">
<h2 class="cityName text-primary"></h2>
<h2 class="temperature"></h2>
<h2 class="description"></h2>
</div>
</body>
<script type="text/javascript" src="script.js"></script>
</html>