-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschedule.html
More file actions
75 lines (65 loc) · 2.01 KB
/
Copy pathschedule.html
File metadata and controls
75 lines (65 loc) · 2.01 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Show Schedule | Broadway Horticultural & Craft Show</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="header">
<div class="container">
<nav class="nav">
<a class="navlink" href="index.html">Home</a>
<a class="navlink" href="about.html">About</a>
<a class="navlink" href="gallery.html">Gallery & Stalls</a>
<a class="navlink" href="stall.html">Stall Application</a>
<a class="navlink" href="contact.html">Contact</a>
<a class="navlink" href="schedule.html">Show Schedule</a>
<a class="navlink" href="entries.html">Enter the Show</a>
</nav>
</div>
</header>
<main class="container">
<section class="card">
<h1>Show Schedule</h1>
<p>
The show schedule is now live!
</p>
<p>
Please note this is just a PDF. You can print the entry form in the schedule
if you wish to enter by post.
</p>
<p>
Or alternatively:
</p>
<p>
<a class="btn" href="entries.html">Enter the Show Online</a>
</p>
<p>
<a href="Documents/Schedule.pdf" target="_blank" class="button">Open / Download Schedule</a>
</p>
</section>
<section class="card">
<iframe
src="Documents/Schedule.pdf"
width="100%"
height="800"
style="border:none;">
</iframe>
<p style="text-align:center; margin-top:10px;">
If the schedule does not display,
<a href="Documents/Schedule.pdf" target="_blank">click here to view it</a>.
</p>
</section>
</main>
<footer class="footer">
<div class="container">
<span id="year"></span> Broadway Horticultural & Craft Show
</div>
</footer>
<script>
document.getElementById("year").textContent = new Date().getFullYear();
</script>
</body>
</html>