-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather-app.html
28 lines (26 loc) · 1.37 KB
/
weather-app.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link href="./css/weather-app-styles.css" rel="stylesheet">
<title>Your local weather!</title>
</head>
<body>
<div id="container">
<div id="weather-data">
<p id="temp-value"></p>
<p id="temp-unit"><span class='active' id='cel-toggle'>°C</span> / <span id='far-toggle' class='inactive'>°F</span</p>
<p id="weather-desc"></p>
<span id="weather-icon"></span>
<p id="location"></p>
<h4><a href='https://github.com/4xDMG/freeCodeCamp/tree/master/Front-End-Development-Projects/Local-Weather-App' target=_blank>See source code on GitHub</a></h4>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/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 src="./js/weather-app-js.js"></script>
</body>
</html>