-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (106 loc) · 3.03 KB
/
index.html
File metadata and controls
109 lines (106 loc) · 3.03 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>나 소개하기</title>
</head>
<style>
@font-face {
font-family: 'Ownglyph_ParkDaHyun';
src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2411-3@1.0/Ownglyph_ParkDaHyun.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}
body{
margin:0px;
}
h1{
text-align:center;
border:rgb(242, 157, 161) double 5px;
padding-bottom:10px;
color:rgb(242, 157, 161);
margin-bottom:0px;
}
#title{
display:grid;
grid-template-columns: 0.8fr 0.8fr 1.4fr 0.7fr 0.7fr;
}
.line2{
padding-top:5px;
}
#small_background {
position:relative;
margin: auto;
margin-left:0px;
width:500px;
height: 750px;
background-image: url('y2k.jpg');
background-size: cover;
background-position: center;
}
#title_text{
padding-top:15px;
font-family:'Ownglyph_ParkDaHyun';
}
#quest{
font-family:'Ownglyph_ParkDaHyun';
position:absolute;
font-size:50px;
top:20%;
left:50%;
color:rgb(255, 149, 154);
}
#selfie{
position:absolute;
top:11%;
left:21%;
width:325px;
height:430px;
}
#profile{
position:absolute;
top: 40%;
left: 40%;
width:260px;
height:260px;
}
#hobby{
position:absolute;
top: 40%;
left: 60%;
width:260px;
height:260px;
}
#fav_hate{
position:absolute;
top: 45%;
left: 80%;
width:200px;
height:200px;
}
</style>
<body>
<h1>
<div id="title">
<img src="line1.png" width="200px">
<img src="line2.png" class="line2" width="200px">
<span id="title_text">Introduce myself!</span>
<img src="line2.png" class="line2" width="200px">
<img src="line1.png" width="200px">
</div>
</h1>
<div id="small_background">
<img src="selfie.jpg" id="selfie">
</div>
<h2 id="quest">What do you want to see?</h2>
<a href="profile.html" title="my profile(name, RC)">
<img src="bear.png" id="profile">
</a>
<a href="hobby.html" title="My hobbies">
<img src="merry.png" id="hobby">
</a>
<a href="fav_hate.html" title="My favorite/hate things">
<img src="lamb.jpg" id="fav_hate">
</a>
</body>
</html>