forked from lithis/drdru.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
coffee.html
105 lines (69 loc) · 1.18 KB
/
coffee.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<!--https://nipponcolors.com/#ichigo-->
<style>
body {
background-color: lightblue;
font-weight: bold;
font-size: 170%;
margin-left : 10%;
text-align: center;
}
.logo{
text-align: center;
background-color: white;
border:8px;
border-style:solid;
padding: 20px;
border-radius: 25px;
}
.centered_bold {
text-align: center;
font-weight: bold;
}
.normal {
font-size: 150%;
}
.lefter {
font-size: 75%;
margin-left : 20px;
}
.logo{
text-align: center;
background-color: white;
border:8px;
border-style:solid;
padding: 20px;
border-radius: 25px;
}
.ruby_under {
ruby-position: under;
}
.big {
font-size: 350%;
}
.big_twittemoji .emoji {
height: 160px;
width: 160px;
}
</style>
</head>
<body>
<div class="big">
<p>
<span class="big_twittemoji">☕</span>
<br>
Thank you !
</p>
</div>
<div class="big centered_bold">
<p>
<span class="ruby_under"><a href="./about.html"><ruby>🏠<rt> Go Back </rt></ruby></a></span>
</div>
<script src="https://twemoji.maxcdn.com/2/twemoji.min.js?12.0.0"></script>
<script>
twemoji.parse(document.body);
</script>
</body>