-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
53 lines (50 loc) · 2.73 KB
/
about.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
<!doctype html>
<html lang="en" >
<head>
<script>
document.documentElement.setAttribute('data-bs-theme', window.localStorage.getItem('theme'))
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Clement </title>
<link rel="icon" href="weather.svg" sizes = "64x32" type="image/icon type">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</svg>
<style>
.mystyle{
background-color: black;
color:white;
}
</style>
</head>
<body >
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="#">Clement</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About this App</a>
</li>
</ul>
<i class="fa fa-moon-o mx-3" onclick="func()" style="font-size: 26px;"></i>
<form class="d-flex" role="search">
<input class="form-control me-2" id="city" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-primary" type="submit" id="final">Search</button>
</form>
</div>
</div>
</nav>
<div class="container text-center"> This weather app displays information about weather of different cities across the world.Search for the particular city in search bar to get its weather updates.It also has dark-mode enable option.</div>
<script src="script.js"></script>
<script src="https://momentjs.com/downloads/moment.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
</body>
</html>