-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity.html
65 lines (60 loc) · 2.87 KB
/
activity.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Weather App</title>
<link rel='stylesheet' type='text/css' href='styles\styles.css'>
<link rel='stylesheet' type='text/css' media='screen' href='styles\main.css'>
<link rel="icon" href="favicon.ico">
</head>
<body>
<div class="container">
<header class="row justify-content-center jumbotron">
<img src="./images/drizzle.png" class="rounded float-left" alt="icon">
<small>SMASH<i>it</i></small>
Weather App
</header>
<div id="updateAlert" class="alert alert-success alert-dismissible fade show" role="alert"
onclick="closeAlert()">
<strong>Info:</strong> You only need internet connection for weather update, this is an offline web
application.You can navigate to Home without connection, Try It Out!
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div id="updateAlertClear" class="alert alert-warning alert-dismissible fade show" role="alert">
<strong>Note:</strong> Clicking the Clear button will delete all history of weather searched.
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true" onclick="closeAlertClear()">×</span>
</button>
</div>
<div class="container" id="no">
<div class="row">
<!-- <div class="col px-md-5"><div class="p-3 border bg-light"></div></div> -->
<div class=" justify-content-start col-2">
<button class="p-3 border btn bg-warning mb-1" onclick="clearHistory()">Clear</button>
</div>
<div class="offset-6 offset-md-8 justify-content-end col-2">
<div>
<a class="p-3 border btn bg-warning mb-1" href="./index.html">Home</a>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row" id="weatherContainer">
</div>
</div>
<div class="jumbotron" id="foot">
<footer class="row justify-content-center">
<div class="col-auto justify-content-center align-item-center">
<p class="text-center text-white">Developed By Olawale Micheal Juwon</p>
<a class="text-center text-warning offset-4" href="mailto:[email protected]?Subject=Weather%20App" target="_top">Contact Me</a>
</div>
</footer>
</div>
<script src='script\Activity.js'></script>
</body>
</html>