-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (63 loc) · 2.42 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!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" />
<meta name="description" content="weather looker of the particular place">
<meta name="keywords" content="weather">
<meta name="author" content="DipankarDas">
<title>Weather App</title>
<script src="https://kit.fontawesome.com/11d589870a.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/index.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"
defer></script>
</head>
<body class="container">
<nav class="navbar navbar-dark bg-dark ">
<div class="container text-center">
<img src="https://img.icons8.com/fluency/48/000000/weather.png" />
<div class="nav-content">Weather App 1.0</div>
</div>
</nav>
<br>
<br>
<div class="search-bar">
<div class="search-input">
<input class="form-control me-2 inputLocation" type="text" placeholder="Enter your city" aria-label="Search">
</div>
<button class="btn btn-dark" type="submit" onclick="findWeatherbyCity()">Search</button>
</div>
<div class="container text-center">
<div class="row2">
<div class="col shadow-lg p-3 mb-5 bg-body rounded">
<div class="card-header">
<h4>Today's Forecast</h4>
</div>
<div class="card-body shadow-lg p-3 mb-5 bg-body rounded">
<div class="search-result"></div>
</div>
</div>
<div></div>
<div class="col shadow-lg p-3 mb-5 bg-body rounded">
<div class="card-header">
<h4>Tomorrow's Forecast</h4>
</div>
<div class="card-body shadow-lg p-3 mb-5 bg-body rounded">
<div class="search-resultF"></div>
</div>
</div>
</div>
</div>
<section class="search-resultA"></section>
<div class="container text-center">
<footer class="py-3 my-4" style="background-color: rgb(41, 41, 41); color: #fff;">
<div class="content">Happy ❤ coding</div>
</footer>
</div>
</body>
<script src="./js/index.js" defer></script>
</html>