-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (25 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>FCC Weather App Project</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Roboto');
</style>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/css/bootstrap.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="main" align="center">
<div id="weatherIcon"><div class="loader"></div></div>
<h1 id="location" font-size="2vw"></h1>
<h1 onclick="changeTemp()" id="temperature"></h1>
</div>
<div id="design"><h5>Designed and coded by </h5><a target="_blank" href="https://www.linkedin.com/in/carpiulian/">Iulian Carp</a></div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/js/bootstrap.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>