-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnniversary.html
More file actions
69 lines (69 loc) · 1.96 KB
/
Anniversary.html
File metadata and controls
69 lines (69 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>History of Treaty 1</title>
<style>
/* Basic styles for the body */
body
{
font-family: Arial, sans-serif;
margin: 0;
background-color: #4a4a4a;
color: #333;
}
/* Styles for header, nav, and footer */
header, nav, footer
{
background-color: #000000;
color: white;
text-align: center;
padding: 10px;
}
/* Navigation link styles */
nav a
{
margin: 0 15px;
color: white;
text-decoration: none;
}
/* Container for video */
.container
{
max-width: 560px;
padding: 20px;
background: #8b8a8a;
border-radius: 8px;
margin: 0 auto;
margin-top: 20px;
}
/* iframe for video */
iframe
{
width: 100%;
height: 315px;
border: none;
}
/* Styles for emphasized text */
.highlight
{
color: #FFD700; /* Gold color for emphasis */
font-weight: bold; /* Bold text */
}
</style>
</head>
<body>
<header>
<h1><span class="highlight">Treaty 1 150th Anniversary</span></h1> <!-- Main title -->
</header>
<nav>
<a href="index.html"><span>Home</span></a>
<a href="communities.html"><span>Communities</span></a>
<a href="history.html"><span>History</span></a>
</nav>
<div class="container">
<iframe src="https://www.youtube.com/embed/ZY53Ijkrbxs?si=61NNZdH7Sy9hzCwh" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</body>
</html>