-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (106 loc) · 3.13 KB
/
index.html
File metadata and controls
106 lines (106 loc) · 3.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Treaty 1</title>
<style>
/* Basic styles for the body */
body
{
font-family: 'Arial', sans-serif;
margin: 0;
background-color: #4a4a4a;
color: #333;
}
/* Header and navigation styles */
header, nav
{
background-color: #000000;
color: white;
text-align: center;
padding: 10px;
}
/* Navigation link styles */
nav a
{
margin: 0 20px;
color: #ffffff;
text-decoration: none;
font-weight: bold;
}
nav a:hover
{
text-decoration: underline; /* Underline on hover */
}
/* Container for cards */
.container
{
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px;
}
/* Card styles */
.card
{
background: #8b8a8a;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
margin: 10px;
padding: 20px;
width: 300px;
text-align: center;
}
/* Footer styles */
footer
{
text-align: center;
padding: 15px;
background-color: #000000;
color: white;
width: 100%;
}
/* 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</span></h1> <!-- Main title -->
</header>
<nav>
<a href="history.html">History</a>
<a href="communities.html">Communities</a>
<a href="Anniversary.html">150th Anniversary</a>
</nav>
<div class="container">
<div class="card">
<h3>Welcome!</h3>
<p>This website aims to educate youth about <span class="highlight">Treaty 1</span>, its significance, and the communities involved.</p>
</div>
<div class="card">
<h3>Learn About History</h3>
<p>Discover the <span class="highlight">historical context</span> and significance of Treaty 1.</p>
<a href="history.html">Explore</a>
</div>
<div class="card">
<h3>Communities Involved</h3>
<p>Find out which <span class="highlight">communities</span> are part of Treaty 1 and their heritage.</p>
<a href="communities.html">Explore</a>
</div>
</div>
<footer>
<p>© 2024 Treaty 1 Education Initiative</p> <!-- Copyright notice -->
<p>© Canada's Treaties</p>
<p>© Indigenous Services Canada</p>
<p>© City of Winnipeg - Indigenous Relations</p>
<p>© MFNED</p>
<p>© Indigenous and Northern Affairs Canada</p>
</footer>
</body>
</html>