forked from likelion-inha-13/FE-HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1-1.html
More file actions
60 lines (60 loc) · 1.39 KB
/
1-1.html
File metadata and controls
60 lines (60 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>1-1 과제</title>
<style>
.left_box{
width:40%;
background: ivory;
}
h1{
background-color: sandybrown;
padding:20px;
text-align: center;
}
.sub{
width:280px;
padding:10px;
background-color: beige;
}
</style>
</head>
<body>
<h1>Welcome to my Blog!</h1>
<div class = "left_box">
<h3 class="sub">자기소개</h4>
<ul>
<li>이름: 박준희</li>
<li>학교: 인하대학교</li>
<li>학과: 컴퓨터공학과</li>
<li>생년월일: 2001.03.27</li>
<li>Git 링크: <a href="https://github.com/BergamoJun?tab=repositories">github/bergamoJun</a></li>
</ul>
<h3 class="sub">내가 좋아하는 것들</h3>
<ul>
<li>
<b>음식</b>
<ol>
<li>오일파스타</li>
<li>퀸아망</li>
<li>동파육</li>
</ol>
</li>
<br>
<br>
<li>
<b>취미</b>
<ol>
<li>요리</li>
<li>해외축구</li>
<li>게임</li>
</ol>
</li>
</ul>
</div>
<div class="right_box">
</div>
</body>
</html>