generated from jake0326/Organized-File-Setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (108 loc) · 4.14 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<!--
Author: Jacob Raber
Date: 2/2/2021
-->
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Main</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="../css/layout.css">
<link rel="stylesheet" href="../css/nav.css">
<link rel="icon"
type="image/png"
href="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/lg/57/jack-o-lantern_1f383.png" />
</head>
<body>
<h1>Halloween</h1>
<p></p>
<div class="topnav" id="myTopnav">
<a href="../index.html" class="active">Home</a>
<a href="../html/timer.html">Countdown</a>
<a href="../html/form.html">Survey</a>
<div class="dropdown">
<button class="dropbtn">Countries
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="../html/ireland.html">Ireland</a>
<a href="../html/latin_america.html">Latin America</a>
<a href="../html/north_america.html">North America</a>
<a href="../html/uk.html">United Kingdom</a>
</div>
</div>
<a href="../html/about.html">About Me</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">☰</a>
</div>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<article>
<img src="../img/imgmap.jpg" usemap="#image-map">
<figure>
<map name="image-map">
<area target="" alt="North America" title="North America" href="../html/north_america.html" coords="40,147,28,46,26,21,39,20,63,20,80,28,96,38,115,45,125,45,152,61,167,70,181,82,172,108,160,161,150,159,138,159,116,160,72,153,36,152" shape="poly">
<area target="" alt="Latin America" title="Latin America" href="../html/latin_america.html" coords="35,166,174,183,157,235,143,232,57,210" shape="poly">
<area target="" alt="Ireland" title="Ireland" href="../html/ireland.html" coords="207,89,281,205" shape="rect">
<area target="" alt="United Kingdom" title="United Kingdom" href="../html/uk.html" coords="276,19,338,14,387,182,309,222,311,174,278,61" shape="poly">
</map>
<figcaption>Click On the country you want to go to</figcaption>
</figure>
<style>
figcaption {
background-color: #222;
color: #fff;
font: italic smaller sans-serif;
padding: 3px;
text-align: center;
font-size:15px;
font-weight: bold;
}
</style>
<table class="table">
<tbody>
<tr>
<td style="color:orange;">The Table</td>
<td>Traditions</td>
<td>Day Celebrated</td>
<td>Started</td>
</tr>
<tr>
<td><img src="../img/latin.jpg" alt="Latin America" class="small"></td>
<td>They visit cemeteries and decorate them.<br>They do this to honor and remember their relatives.</td>
<td>They celebrate it through: <br>October 31st to November 2nd</td>
<td>They started celebrating it: <br>Around the 3000 years ago</td>
</tr>
<tr>
<td><img src="../img/usa.jpg" alt="North America" class="small"></td>
<td>They Trick or Treating and wearing costumes.<br>They also go to costume parties and carve pumpkins.</td>
<td>They celebrate it on: <br>October 31st</td>
<td>They started celebrating it: <br>Around the 19th century</td>
</tr>
<tr>
<td><img src="../img/iri.jpg" alt="Ireland" class="small"></td>
<td>They Trick or Treat and have a Bonfire.<br>They also carve turnip and rutabaga.</td>
<td>They celebrate it on: <br>October 31st</td>
<td>They started celebrating it: <br>Around 2000 years ago</td>
</tr>
<tr>
<td><img src="../img/uk.jpg" alt="United Kingdom" class="small"></td>
<td>They tell ghost stories and having children's games.<br>They also have parades and fireworks.</td>
<td>They celebrate it on: <br>October 31st</td>
<td>They started celebrating it: <br>Around the 8th century</td>
</tr>
</tbody>
</table>
</article>
<footer>Web Design Final <a href="mailto:[email protected]" target="_blank"> <em>Feedback</em></a> Copyright 2021</footer>
</body>
</html>