-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlike.html
More file actions
63 lines (55 loc) · 1.66 KB
/
like.html
File metadata and controls
63 lines (55 loc) · 1.66 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>이가연 자기소개서</title>
<link rel="stylesheet" href="introduce_page.css">
<style>
.contents {
text-align: center;
font-size: 20px;
}
h2 {
padding-top: 30px;
color: blueviolet;
}
.bolding {
font-weight: bold;
}
.travel_img {
width: 50%;
height: 40%;
}
</style>
</head>
<body>
<table class="main">
<tr class="head">
<td colspan="3">
Introduce Gayeon
</td>
</tr>
<tr>
<td class="first">
<ol>
<li><a href="Introduce_Gayeon.html">Introduce</a></li>
<li><a href="personality.html">personality</a></li>
<li><a href="like.html">Like</a></li>
<li><a href="plan.html">Plan</a></li>
<li><a href="Etc.html">Etc.</a></li>
</ol>
</td>
<td class="second">
<div class="contents">
<h2>🥰 내가 좋아하는 것 🥰</h2>
<p>취미 : 유튜브보기, 자전거타기 </p>
<p>좋아하는 음식 : <span class="bolding">한식파!!</span></p>
<p><span class="bolding">여행</span> 좋아해요!</p>
<img class="travel_img" src="./image/travel.jpg">
</div>
</td>
</tr>
</table>
</body>
</html>