-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (50 loc) · 1.76 KB
/
index.html
File metadata and controls
54 lines (50 loc) · 1.76 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
<!-- TODO
- Fix mobile
!-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Local Weather</title>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/css/bootstrap.min.css'>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
<script src="scripts/script.js"></script>
</head>
<body>
<div class="container main mt-5">
<div class="row">
<div class="col" align="center"><p class="logotext">local weather</p></div>
</div>
<div class="row mt-5">
<div class="col">
<div class="spinner">
<div class="double-bounce1"></div>
<div class="double-bounce2"></div>
</div>
<h2 class="weathertext"></h2>
<br><br><br>
</div>
</div>
<div class="push"></div>
</div>
</div>
<div class="footer">
<div class="container">
<div class="row">
<div class="col">
<p><a href="#"><span id="toggle"><strong>Celcius</strong>/Fahrenheit</span></a><br>
Made by <a href="http://calumpatrick.com" class="underline">Calum Patrick.</a></p>
</div>
<div class="col">
<br><p class="br">Image by <a href="#" class="auth underline"></a> / <a href="https://unsplash.com?utm_source=LocalWeather&utm_medium=referral&utm_campaign=api-credit" class="underline">Unsplash</p>
</div>
</div>
</div>
</div>
</body>
</html>