-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfav_hate.html
More file actions
135 lines (127 loc) · 3.91 KB
/
fav_hate.html
File metadata and controls
135 lines (127 loc) · 3.91 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!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:15%;
left:40%;
color:rgb(255, 149, 154);
}
#fav{
position:absolute;
top:11%;
left:21%;
width:325px;
height:430px;
}
.content_fav{
position:absolute;
top:23%;
left:40%;
font-family:'Ownglyph_ParkDaHyun';
font-size:40px;
}
#quest_hate{
font-family:'Ownglyph_ParkDaHyun';
position:absolute;
font-size:50px;
top:60%;
left:40%;
color:rgb(255, 149, 154);
}
.content_hate{
position:absolute;
top:70%;
left:40%;
font-family:'Ownglyph_ParkDaHyun';
font-size:40px;
}
.home{
position:absolute;
top:60%;
left:70%;
width:180px;
height:180px;
}
</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="tangled.jpg" id="fav">
</div>
<h2 id="quest">My favorite things</h2>
<div class="content_fav">
<ol>
<li>음식: 닭발, 김치찜, 불닭, 순두부+간장장</li>
<li>노래 장르: 인디, 팝송, 클래식, 로파이, kpop, jpop</li>
<li>영화 장르: 디즈니, 픽사, 지브리, 로맨스, 뮤지컬</li>
<li>좋아하는 책: 죽은 시인들의 사회
</li>
그 외: 귀여운 동물들들, 침대
</ol>
</div>
<h2 id="quest_hate">My hate things</h2>
<div class="content_hate">
<ol>
<li>음식: 와사비, 멍게</li>
<li>노래 장르: 발라드, 락 </li>
<li>영화 장르: 공포, 범죄</li>
그 외: 벌레, 정해진 틀
</ol>
</div>
<a href="index.html" title="Go home">
<img src="penguin.jpg" class="home">
</a>
</body>
</html>