-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 892 Bytes
/
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
<html lang="en">
<head>
<link
href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
rel="stylesheet"
/>
<link href="https://cdn.jsdelivr.net/npm/normalize.css" rel="stylesheet" />
<link href="../base-styles.css" rel="stylesheet" />
<link href="index.css" rel="stylesheet" />
<title>Black and White Filter</title>
</head>
<body>
<header>
<h1 class="inspired-title">Black and White Filter</h1>
<h2 class="inspired-credit">
Inspiration:
<cite class="inspired-credit__citation"
><a href="https://emotion.sh/">Emotion</a></cite
>
</h2>
</header>
<div class="black-and-white">
<span class="segment segment__one">Black</span>
<span class="segment segment__two">Lives</span>
<span class="segment segment__three">Matter</span>
</div>
</body>
</html>