-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomic.html
More file actions
77 lines (77 loc) · 2.48 KB
/
comic.html
File metadata and controls
77 lines (77 loc) · 2.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Comic</title>
<link href="https://fonts.googleapis.com/css2?family=Chocolate+Classical+Sans&family=Major+Mono+Display&family=NTR&family=Poiret+One&family=Raleway:ital,wght@0,200;1,200&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Chocolate+Classical+Sans&family=Major+Mono+Display&family=NTR&family=Poiret+One&family=Raleway:ital,wght@0,500;1,500&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
}
header {
width: 100%;
text-align: center;
margin-top: 20px;
}
nav.raleway a {
margin-right: 20px;
}
hr {
border: none;
border-top: 1px solid #959595;
width: 27%;
margin: 20px auto;
}
.raleway-main {
font-family: "Raleway", sans-serif;
font-size: 48px;
font-weight: 200;
font-style: normal;
}
.raleway {
font-family: "Raleway", sans-serif;
font-size: 14px;
font-weight: 1000;
font-style: normal;
}
a {
text-decoration: none;
color: gray;
}
p {
font-family: "Raleway", sans-serif;
font-size: 20px;
font-weight: 350;
font-style: normal;
text-align: center;
}
h1 {
font-family: "Raleway", sans-serif;
font-size: 30px;
font-weight: 350;
font-style: normal;
text-align: center;
}
.cont {
margin-top: 15px;
}
</style>
</head>
<body>
<header>
<h1 class="raleway-main">COMIC FOR YOU</h1>
</header>
<main>
<h1>Comic title</h1>
<div class="cont">
<img alt="comic itself" height="300" width="auto">
<h3 style="text-align: right;">Comic date</h3>
</div>
<p>Comic alernative text</p>
</main>
</body>
<script src="dist/comic.js"></script>
</html>