-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (91 loc) · 2.11 KB
/
Copy pathindex.html
File metadata and controls
95 lines (91 loc) · 2.11 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Love Letter</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.container {
background-color: rgb(79, 140, 253);
width: 400px;
height: 440px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
border-radius: 20px;
border: 3px solid;
}
h1 {
text-align: center;
margin-bottom: 20px;
}
li {
margin-left: 20px;
}
footer {
position: fixed;
bottom: 20px;
}
blockquote {
background-color: #47b4f4;
}
img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 12px;
margin: 4px;
}
.pic {
display: flex;
justify-content: space-between;
}
p,
h3 {
padding-left: 4px;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>~Love Letter~</h1>
</header>
<main>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Officiis,
impedit eveniet sapiente deserunt eos iure nihil aliquam distinctio ab
vero. Itaque, iure sequi illo distinctio alias magni maxime omnis
laboriosam?
</p>
<br />
<blockquote>
<h3>Ordered list for Love:</h3>
<ol>
<li>L</li>
<li>O</li>
<li>V</li>
<li>E</li>
</ol>
</blockquote>
<br />
<div class="pic">
<img src="pic/kucingL.jpeg" alt="L" />
<img src="pic/kucingO.jpeg" alt="O" />
<img src="pic/kucingV.jpeg" alt="V" />
<img src="pic/kucingE.jpeg" alt="E" />
</div>
</main>
<footer>
<p style="color: bisque"><em>Yang benar,</em></p>
<p><strong>Saya</strong></p>
</footer>
</div>
</body>
</html>