forked from HackingHistory/01-html-card-assignment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (45 loc) · 2.28 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Canadian Curriculum History Project</title>
<!-- external resources -->
<!-- steal some base styles from chota: https://jenil.github.io/chota/ -->
<link rel="stylesheet" href="https://unpkg.com/chota@latest">
<!-- customize in this file -->
<link rel="stylesheet" href="style.css">
<style>
</style>
</head>
<body>
<nav class="bg-primary">
<div class="nav-center">
<h1><a class="brand" href="#">Canadian Curriculum History Project</a></h1>
<h4>Reconciling the history of Canadian public shcool curriculum</h4>
</div>
</nav>
<main id="cardcontainer">
<section class="card">
<header class="card-header">
1970 to 1979
</header>
<img class="profile-image" src="https://user-images.githubusercontent.com/45952829/157327917-53322f10-f683-47ca-b709-1bea87dee89c.jpeg" alt="An 1842 scene of an . Here freedom seekers were transferred to Ojibwa escorts for the trip to Canada." title="Odawa village at the Mackinac Strait">
<section class="card-body">
<p class="card-text"><b>Period</b>Subject</p></p>
<!-- THis code is ocmmented out, but I'm leaving it here as an example -->
<!-- <figure>
<figure-caption>Tech Skills</figure-caption>
<div class="progress-bar">
<span class="progress-bar-fill" style="width: 80%;" title="4 stars"></span>
</div>
</figure> -->
<p>The 1970's are considered the 'Activist' period in Indigenous education. During this time</p>
</section> <!-- card-body -->
<footer class="card-footer text-center">
<a href="https://librarysearch.library.utoronto.ca/permalink/01UTORONTO_INST/fedca1/cdi_gale_infotrac_592339253" class="button">Let's go!</a>
<a href="https://www.onondaganation.org/culture/homes/" class="button">1980's</a>
</footer> <!-- card-footer -->
</section>
</main>
</body>
</html>