-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (72 loc) · 3.12 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
74
75
76
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>KBP Weather App</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Local Weather App Created by Koleen BP">
<meta name="keywords" content="koleen bp, koleen paunon, weather app, Freecodecamp weather app, local weather, #kbpsystem, #devpilipinas, #builbuildbuild">
<meta name="author" content="Koleen BP">
<meta http-equiv="refresh" content="360">
<link rel="shortcut icon" type="image/png" href="https://github.com/KBPsystem777/weatherApp/blob/master/public/img/favicon.png?raw=true" />
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link href="main.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120923400-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-120923400-1');
</script>
</head>
<body onload="dataRun()">
<header class="text-center">
<h1>Local Weather App</h1>
</header>
<div class="container-fluid text-center">
<p id="temp" class="text-center"></p>
<div class="text-center">
<div>
<div class="text-center">
<button class="text-center btn" id="fConvert">°F</button>
<button class="text-center btn" id="cConvert">°C</button>
</div>
</div>
</div>
<h3 id="description"></h3>
<h1 id="city"></h1>
<script src="index.js"></script>
<p id="clock"></p>
</div>
<footer class="container-fluid text-center">
<p>Developed by: <a href="https://koleenbp.now.sh" class="btn" id="developer">Koleen BP</a></p>
<div id="media-tags">
<a class="btn" href="https://gitlab.com/KBPsystem" target="_blank">
<i class="fa fa-gitlab"></i>
</a>
<a class="btn" href="https://github.com/kbpsystem777" target="_blank">
<i class="fa fa-github"></i>
</a>
<a class="btn" href="https://twitter.com/kbpsystem" target="_blank">
<i class="fa fa-twitter"></i>
</a>
<a class="btn" href="https://linkedin.com/in/koleenbp" target="_blank">
<i class=" fa fa-linkedin"></i>
</a>
<a class="btn" href="https://koleenbp.now.sh" target="_blank">
<i class="fa fa-globe"></i>
</a>
</div>
<div id="tutorials">
<p>Auto Deployed using Now</p>
</div>
</footer>
</body>
</html>