-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (51 loc) · 1.67 KB
/
index.html
File metadata and controls
52 lines (51 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Quarantine - share what you need</title>
<meta name="description" content="In quarantine during the coronavirus? Share what you need and find rebels who can help you">
<link href="https://fonts.googleapis.com/css?family=Crimson+Text&display=swap" rel="stylesheet">
<style>
@font-face {
font-family: FucxedCap;
src: url("/static/fonts/FUCXEDCAPS-v2.otf") format("opentype");
}
@font-face {
font-family: FucxedCap;
src: url("webfont.eot"); /* IE9 Compat Modes */
src: url("/static/fonts/FUCXEDCAPS-v2.otf") format("opentype");
url("/static/fonts/FUCXEDCAPS-v2..woff") format("woff"), /* Modern Browsers */
url("/static/fonts/FUCXEDCAPS-v2..ttf") format("truetype"), /* Safari, Android, iOS */
}
h1 {
font-family: FucxedCap;
font-size: 50pt;
font-size: 8vw;
}
@media(min-width: 800px) {
h1 {
font-size: 50pt;
}
}
body {
font-family:'Crimson Text', serif;
}
.description {
font-size: 16pt;
}
#footer {
margin-top: 200px;
color: #555;
text-align: center;
}
</style>
</head>
<body>
<center>
<h1>Quarantine</h1>
<p class="description">In quarantine during the coronavirus?<br/>
Share what you need and find rebels who can help you</p>
</center>
<div id="footer">Contribute on <a href="https://github.com/extinctionrebellion/quarantine">GitHub</a></div>
</body>
</html>