-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (51 loc) · 2.06 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<title> Weather App </title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class = "container-fluid">
<div class ="row">
<div class = "col-sm-12 text-center jumbotron top">
<h1> Today's Weather</h1>
<hr class ="short">
<h2 id ="weather"> Loading Data </h2>
<h3 id="time"> Loading</h3>
</div>
</div>
<div class ="row">
<div class="col-sm-16 text-center black-jumbo">
<div class="col-sm-4">
<h3 id ="info1"></h3>
<hr class ="short1">
<h3 id ="info2"></h3>
<h3 id ="9"></h3>
<hr class ="short1">
<h3 id="10"></h3>
</div>
<div class="col-sm-4">
<h3 id ="info3"></h3>
<hr class ="short1">
<button id ="switch" class = "btn btn-primary"> Show in Fareheniet</button>
</div>
<div class="col-sm-4">
<h3 id ="info5"></h3>
<hr class ="short1">
<h3 id ="info6"></h3>
<h3 id ="info7"></h3>
<hr class ="short1">
<h3 id ="info8"></h3>
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script type="text/javascript" src ="index.js"></script>
</body>
</html>