-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (29 loc) · 1.56 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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Should I Wear Shorts Today?</title>
<meta property="og:url" content="">
<meta property="og:title" content="Should I Wear Shorts Today?">
<meta property="og:site_name" content="Should I Wear Shorts Today?">
<meta property="og:description" content="Before man enters the outdoors he always wonders whether or not he can wear shorts or if he has to wear pants. This website can now tell mankind if they should wear pants or shorts before having to brace the elements of mother nature.">
<link rel="icon" type="image" href="/favicon.ico"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="label"><p>Enter your location:</p></div>
<input type="text" name="input" id = "input">
<button class="button">Should I Wear Shorts?</button>
<div id="weather"></div>
<div id="link"></div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='https://cdn.rawgit.com/monkeecreate/jquery.simpleWeather/master/jquery.simpleWeather.min.js'></script>
<script src="js/index.js"></script>
<div id="footer"><p>
created and designed by
<a id="footerlink" href="https://github.com/ReesMcD" title="GitHub" target = "_blank">rees mcDevitt</a>
<br> weather data provided by simpleWeatherjs
</p></div>
</body>
</html>