-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (102 loc) · 3.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="On Juneteenth I built a small project that explores the effects of Systemic Racism in the United States"
/>
<meta name="title" property="og:title" content="U.S. & Racism" />
<meta property="og:type" content="Website" />
<meta
name="image"
property="og:image"
content="https://mccambley.github.io/US-Racism/images/screenshot.png"
/>
<meta
name="description"
property="og:description"
content="An exploration of Systemic Racism in the United States"
/>
<meta name="author" content="Jake McCambley" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="./images/favicon_io/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon_io/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./images/favicon_io/favicon-16x16.png"
/>
<link rel="manifest" href="./images/favicon_io/site.webmanifest" />
<link rel="stylesheet" href="./index.css" />
<title>U.S. & Racism</title>
</head>
<body class="page">
<img
src="./images/racism.jpeg"
alt="Public demonstrators"
class="thumbnail"
/>
<img
src="./images/screenshot.png"
alt="Website screenshot"
class="thumbnail"
/>
<section class="content">
<nav class="links">
<a href="https://twitter.com/JakeMcCambley" target="_blank"
><img
src="./images/twitter.svg"
alt="My Twitter"
class="icon"
/></a>
<a href="https://github.com/McCambley/US-Racism" target="_blank"
><img
src="./images/github.svg"
alt="Github Respository"
class="icon"
/></a>
</nav>
<a href="http://www.example.com" class="source" target="_blank"
>Here's the source</a
>
<h2 class="fact">This is a fact</h2>
<div class="button-container">
<button class="button button_next" type="button">Hello,</button>
<a href="#" class="button-link" target="_blank"
><button class="button button_source" type="button">
World!
</button></a
>
</div>
<p class="credit">
From
<a
href="https://curiousrefuge.com/blog/systemic-racism"
target="_blank"
class="source"
>article</a
>
by
<a
href="https://twitter.com/calebwward?lang=en"
target="_blank"
class="source"
>Caleb Ward</a
>
</p>
</section>
<script src="./index.js"></script>
</body>
</html>