-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 1.54 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
<!DOCTYPE html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/weather.css">
<link rel="stylesheet" type="text/css" href="css/weather-icons.min.css">
<link rel="stylesheet" type="text/css" href="css/weather-icons-wind.min.css">
<title>FreeCodeCamp - Show the Local Weather</title>
</head>
<body>
<div class="container-fluid">
<div class="row" id="weather-summary">
<div id="ws-location"></div>
<div id="ws-datetime"></div>
<div id="ws-description">
<span id="wsd"></span>
</div>
<div id="ws-details">
</div>
</div>
<div class="row" id="weather-forecast">
<div id="about">
<a href="https://github.com/coymeetsworld/local-weather-viewer" target="_blank">Check the source code out on GitHub!</a>
</div>
</div>
</div>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/weather.js"></script>
</body>
</html>