-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Website</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="logo.jpg">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<a style="border-left: 5px solid blue; padding-left: 3px; text-shadow: 2px 2px 5px blue; font-weight: bold;" class="navbar-brand" href="#"><i class="material-icons">cloud</i>Weather Website</a>
<div class="collapse navbar-collapse">
<form class="form-inline d-flex ms-auto">
<input class="form-control me-2" type="search" placeholder="Enter City" id="cityInput">
<button id="getweatherbtn" class="btn btn-primary" type="button" onclick="getWeather()">Search</button>
</form>
</div>
</div>
</nav>
<div class="container">
<img id="logo" src="logo.jpg">
<div class="card text-center">
<div class="card-body">
<h5 class="card-title">Weather Information</h5>
<p class="card-text" id="weatherInfo">Enter a city to get weather information.</p>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="main.js"></script>
</body>
</html>