-
Notifications
You must be signed in to change notification settings - Fork 0
/
love_poem_for_an_ex-girlfriend.html
71 lines (61 loc) · 2.05 KB
/
love_poem_for_an_ex-girlfriend.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0">
<title>Love Poem for an Ex-Girlfriend</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;1,500&display=swap" rel="stylesheet">
<style type="text/css">
@font-face {
font-family: 'futuracondensed_medium';
src: url('img/fonts/futura-condensedmedium-04-webfont.woff2') format('woff2'),
url('img/fonts/futura-condensedmedium-04-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
body {
background: #fefefe;
color: #1b1919;
font-family: 'Cormorant Garamond', serif;
}
.content {
max-width: 700px;
margin: 100px auto;
font-size: 1.35rem;
line-height: 1.5;
}
.title {
text-transform: uppercase;
font-family: 'futuracondensed_medium';
font-size: 2rem;
}
.cite {
font-style: italic;
}
@media (max-width: 500px) {
.content {
margin: 30px 10px;
}
.title {
font-size: 1.9rem;
}
}
</style>
</head>
<body>
<div class="content">
<h3 class="title">Love Poem for an Ex-Girlfriend</h3>
<p>Kisses in the bath, my stomach flat against your back;<br>
Evenings where I’d hold you till the world outside went black.<br>
Smiles that conveyed far more than words could ever tell;<br>
Confidence you’d catch me if I dared to fly and fell.</p>
<p>Glances cast between us only we could understand;<br>
Moments where the whole world changed because you touched my hand;<br>
Two hearts joined so close as one, we’d wonder which was which:<br>
These are things I never had with you, you fucking bitch.</p>
<p class="cite">—Max Nussenbaum</p>
</div>
</body>
</html>