-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (49 loc) · 1.74 KB
/
index.html
File metadata and controls
58 lines (49 loc) · 1.74 KB
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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Local Weather Display</title>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta/css/bootstrap.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="https://rawgithub.com/darkskyapp/skycons/master/skycons.js"></script>
<link href='https://fonts.googleapis.com/css?family=Rock Salt' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet'>
</head>
<body>
<div class="container" id="container1">
<div class="row" id="row1">
<h1>How's the Weather?</h1>
</div>
<div class="row" id="row2">
<div class="col-lg-6 col-lg-offset-3" id="borderDiv">
<div class="col-lg-12 middle" id="mainInfo">
<h4 id="myLocation">City, State</h4>
<h4 id="temp">Temp</h4>
<h5 id="tempText">Click to Convert</h5>
</div>
<div class="col-lg-12 middle" id="iconArea">
<h2 id="sky">Sky</h2>
<figure id="pic">
<canvas id="icon" width="115" height="115"></canvas>
</figure>
</div>
</div>
</div>
<footer class="row middle" id="row3">
<h5>Made by <a href="https://codepen.io/mtHuberty/" target="_blank">Matt</a></h5>
</footer>
</div>
</body>
</html>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>