-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfriends.html
69 lines (69 loc) · 2.12 KB
/
friends.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
<!--
TODO: those damn dives...
-->
<html>
<head>
<style>
body {
background-color: #5b5c56;
}
#main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#cat_cig {
width: 25rem;
height: 25rem;
border: 2px solid #080b02;
}
#title {
color: #989c8b;
font-size: 3rem;
font-weight: bold;
text-shadow: 2px 0 #080b02, -2px 0 #080b02, 0 2px #080b02, 0 -2px #080b02,
1px 1px #080b02, -1px -1px #080b02, 1px -1px #080b02, -1px 1px #080b02;
}
#friends_links > * {
margin: 1rem;
color: #989c8b;
font: 1.5rem Verdana, serif;
}
#about {
margin: 2rem 8rem 2rem 8rem;
max-width: 50rem;
color: #adafa7;
text-align: center;
font: 1.5rem Verdana, serif;
}
#subpage_link > * {
margin: 2rem;
max-width: 50rem;
color: #adafa7;
text-align: center;
font: 1.5rem Verdana, serif;
}
#footer {
margin: 2rem;
}
</style>
</head>
<body>
<div id="main">
<div id="title">friends</div>
<img id="cat_cig" src="./cat3.jpg" alt="cat with a cig"/>
<div id="about"></br>People I'm fond of.</br> </div>
<div id="friends_links">
<a href="https://poz.pet/">poz (a boyfriend of mine)</a>
<a href="https://markasspandi.nl/">MarkAssPandi</a>
<a href="https://old.rafau.pl/">JustRafau</a>
</div>
<div id="footer">
<div id="subpage_link">
<a href="index.html">Back</a>
</div>
</div>
</div>
</body>
</html>