-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 928 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Local Weather</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link href="https://fonts.googleapis.com/css?family=Lato:300,300i,400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./src/css/style.css">
<link rel="stylesheet" type="text/css" href="./src/css/loader.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript" src="./src/js/weather.js"></script>
</head>
<body>
<h1>Local Weather</h1>
<div class="wrapper">
<div class="card">
<div class="card-inner blue">
<button id="temp"></button>
<span id="description"></span>
<span id="location"></span>
</div>
</div>
<div class="loader"></div>
</div>
</body>
</html>