-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommunities.html
More file actions
71 lines (71 loc) · 2.13 KB
/
communities.html
File metadata and controls
71 lines (71 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Communities in Treaty 1</title>
<style>
/* Basic styles for 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 main content */
.container
{
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #8b8a8a;
border-radius: 8px;
}
/* Styles for emphasized text */
.highlight
{
color: #FFD700; /* Gold color for emphasis */
font-weight: bold; /* Bold text */
}
</style>
</head>
<body>
<header>
<h1><span class = "highlight">Communities Involved in Treaty 1</span></h1> <!-- Main title -->
</header>
<nav>
<a href="index.html"><span>Home</span></a>
<a href="history.html"><span>History</span></a>
<a href="Anniversary.html"><span>150th Anniversary</span></a>
</nav>
<div class="container">
<h2><span>First Nations Involved</span></h2>
<ul>
<li><span>Brokenhead Ojibway Nation</span></li>
<li><span>Sagkeeng First Nation</span></li>
<li><span>Long Plain First Nation</span></li>
<li><span>Peguis First Nation</span></li>
</ul>
<h2><span>Ethnic Affiliations</span></h2>
<p><span>Primarily Ojibway and Cree Nations.</span></p>
<h2><span>Ongoing Contributions</span></h2>
<p><span>These communities actively promote their culture and education.</span></p>
</div>
</body>
</html>