-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhobby.html
More file actions
108 lines (102 loc) · 3.17 KB
/
hobby.html
File metadata and controls
108 lines (102 loc) · 3.17 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
<!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);
}
#hobby{
position:absolute;
top:11%;
left:21%;
width:325px;
height:430px;
}
.content{
position:absolute;
top:35%;
left:50%;
font-family:'Ownglyph_ParkDaHyun';
font-size:50px;
}
.home{
position:absolute;
top:25%;
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">
<iframe id="hobby" src="guitar.mp4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<h2 id="quest">My hobbies</h2>
<div class="content">
<ol>
<li>일기쓰기</li>
<li>기타 치기</li>
<li>일상 기록하기</li>
<li>전시회&연주회 가기</li>
<li>음악 듣기</li>
</ol>
</div>
<a href="index.html" title="Go home">
<img src="penguin.jpg" class="home">
</a>
</body>
</html>