-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather.html
72 lines (57 loc) · 2.23 KB
/
weather.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="My GitHub site">
<meta name="author" content="Justin">
<!-- This start file was built by Paul Cheney -->
<title>Justin's Weather</title>
<!-- TELLS PHONES NOT TO LIE ABOUT THEIR WIDTH & stops the font from enlarging when a phone is turned sideways-->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- STYLE SHEETS -->
<link href="css/normalize.css" rel="stylesheet">
<!-- phone-default -->
<link href="css/small.css" rel="stylesheet">
<!-- enhance-tablet -->
<link href="css/medium.css" rel="stylesheet">
<!-- enhance-desktop -->
<link href="css/large.css" rel="stylesheet">
<!-- <link href="css/wstyles.css" rel="stylesheet">-->
<link href="https://fonts.googleapis.com/css?family=Titillium+Web:400,400i,600,600i" rel="stylesheet" type="text/css">
<!-- removes the browser interface -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Weather">
</head>
<body>
<!-- HEADER HERE -->
<header class="clearfix">
<figure class="logo">
<img src="images/logo.jpg" alt="logo" srcset=""> <!--"images/logo1.png 1x, images/logo2.png s2" used for 1x or 2x pixel density-->
</figure>
<h1>Company Name Here</h1>
<h2>Slogan or Tagline</h2>
</header>
<!-- NAVIGATION HERE -->
<nav class="clearfix">
<button onclick="toggleMenu()">≡</button>
<ul id="primaryNav" class="hide">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="weather.html">Weather app</a></li>
<li><a href="forms.html">Forms</a></li>
<!--<li><a href="#">Contact</a></li>-->
</ul>
</nav>
<!-- CONTENT HERE -->
<main class="clearfix">
This interactive weather forecast app uses JavaScript to get JSON data from OpenWeatherMap.org.
<br><br>
<iframe src="weather_ins.html" width="90%" height="780px" style="border-radius: 5px; border-width: 1px;"></iframe>
</main>
<!-- FOOTER HERE -->
<footer>
© 2018 • Justin Hammack
</footer>
<script src="js/scripts.js"></script>
</body>
</html>