-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (59 loc) · 1.81 KB
/
index.html
File metadata and controls
61 lines (59 loc) · 1.81 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900|Work+Sans:700"
/>
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/weather-icons.min.css" />
</head>
<body>
<div class="container">
<div class="card">
<h5 class="card-header">
Today at <span id="destination-name">Walt Disney World</span> -
<span id="date"></span>
</h5>
<div class="card-body">
<div class="section">
<h3 class="header">Park Hours</h3>
<ul id="parks"></ul>
</div>
<div id="weather-section" class="section">
<h3 class="header">
Weather
<small
><a href="https://openweathermap.org/"
>Weather data provided by OpenWeather</a
></small
>
</h3>
<div id="weather"></div>
</div>
<img
id="presented-by-image"
width="300"
src="wdwnt_logo.png"
alt="Presented by wdwnt.com"
/>
</div>
</div>
</div>
<template id="weather-card-template">
<div class="weather-card-body">
<div class="card">
<div class="card-header"></div>
<div class="weather-icon">
<i class="wi"></i>
</div>
<div class="card-body">
<p id="weather-card-text" class="card-text"></p>
</div>
</div>
</div>
</template>
<script src="scripts/script.js"></script>
</body>
</html>