-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathex2_page3.html
More file actions
78 lines (76 loc) · 3.24 KB
/
ex2_page3.html
File metadata and controls
78 lines (76 loc) · 3.24 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
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Guy Fawkes Day</title>
<style>
body{
font:100%/1.4 Veranda, Arial, Helvetica, sans-serif;
color: #000099;
}
td{
width: 50px;
height: 50px;
}
.wide1 {
width: 500px;
}
.wide2 {
width: 100px;
}
.high1 {
height: 500px;
}
.here{
color: #FF0000;
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-85185310-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<table>
<tr>
<td></td>
<td class="wide1"><a href="index.html">Halloween</a> |
<a href="ex2_page2.html">Dia de los Muertos</a> | <span class="here"><b>Guy Fawkes Day</b></span></td>
<td class="wide2"></td>
</tr>
<tr>
<td></td>
<td class="wide1"></td>
<td class="wide2"></td>
</tr>
<tr>
<td></td>
<td class="wide1 high1">
<h1>Guy Fawkes Day</h1>
<p>Bonfire Night, a different kind of fall festival.</p>
<h2>Remember, remember the fifth of November</h2>
<img src="guy_fawkes.jpg" height="200" width="200" alt="Halloween image" align="left" hspace="10"/>
<p>In Great Britain, where Protestantism eliminated celebrations based around All Saints Day, a different kind of fall festival emerged in the form of Guy Fawkes Day. While it shares some similar traditions to Halloween, such as bonfires and parades where children chant "penny for the guy" in an effort to collect money for their creatively rendered effigies - an act that resembles trick-or-treating, Guy Fawkes Day commemorates an historical event.</p>
<p>Guy Fawkes and 12 other Catholic conspirators plotted to use gunpowder to blow up King James I at the opening of Parliament on November 5th, 1605. They would then kidnap princess Elizabeth, install her as a puppet Queen, marry her to a Catholic, and restore the Catholic monarchy. Their plot was discovered before it could commence and Fawkes was found guilty of high treason, hung, drawn, and quartered.</p>
<p>The anniversary is celebrated, mostly in England, by lighting bonfires, burning effigies, and setting off fireworks. It is primarily a social holiday, but has political undertones, as current politicians and celebrities can often be found burning in effigy alongside Guy Fawkes. The image of Guy Fawkes has taken on a meaning independent of the holiday. The face of Guy Fawkes - his mask - has come to be known as dissent, and is used thusly in various social venues. <em>The guy lives.</em> </p>
<h3>Further Reading</h3>
<ul>
<li><a href="http://www.novareinna.com/festive/guy.html" target="_blank">Guy Fawkes Night - novareinna.com</a></li>
<li><a href="http://www.history.com/news/guy-fawkes-day-a-brief-history" target="_blank">A brief history of Guy Fawkes Day - history.com</a></li>
<li><a href="http://theweek.com/articles/463151/brief-history-guy-fawkes-mask" target="_blank">A brief history of the Guy Fawkes Mask - theweek.com</a></li>
</ul>
</td>
<td class="wide2"></td>
</tr>
<tr>
<td></td>
<td class="wide1"></td>
<td class="wide2"></td>
</tr>
</table>
</body>
</html>