-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (34 loc) · 1.37 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="http://racinegraphics.com/resources/css/fonts.css">
<link rel="stylesheet" href="http://racinegraphics.com/resources/css/layout.css">
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
</head>
<body>
<div class="wrapper">
<div class="page">
<div style="clear: both; margin-top: 40px;"></div>
<div class="traits">
<ul class="dev-list">
<li>Homework #3 for GA JavaScript Class in NYC</li>
<li>Try this challenge for next class (after Memorial Day)</li>
<li>Sign up for openweathermap.org and generate an API key</li>
<li>User either $.ajax or $.get to pull weather current data for Washington DC (hint: http://api.openweathermap.org/data/2.5/weather?q=...).</li>
<li>Print the temperature in console</li>
<li>Bonus 1: add a form prompting user for the city and state</li>
<li>Bonus 2: convert answer from kelvin to fahrenheit</li>
</ul>
</div>
<h1>city: <span class="city"></span></h1>
<h2>ferenheit: <span class="farenheit"></span></h2>
<h3>kelvin: <span class="temp"></span></h2>
</div>
</div>
<script src="script.js"></script>
</body>
</html>