-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
95 lines (87 loc) · 3.75 KB
/
profile.html
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link href="/css/main.css" rel="stylesheet">
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"> -->
</head>
<body class="background">
<div class="container">
<div class="white-box">
<!-- 상단 -->
<div class="row">
<!-- 프로필 -->
<div class="col-md-8">
<div class="d-flex">
<div class="flex-shrink-0">
<img src="/img/author.png">
</div>
<div class="flex-grow-1 ms-3">
<h3 class="fw-bold">Choi Taesung</h3>
<p>Front-end Designer</p>
<p class="text-primary"><i class="fa-solid fa-location-dot"></i> 부산 남구</p>
<button type="button" class="btn btn-primary">Contact</button>
</div>
</div>
</div>
<!-- 인적사항 -->
<div class="col-md-4 border-left">
<div class="row">
<div class="col-6 ps-3 mt-3">
<h6>Location</h6>
<h6>Age</h6>
<h6>Experience</h6>
<h6>Degree</h6>
</div>
<div class="col-6 ps-3 mt-3">
<h6>부산 남구</h6>
<h6>26</h6>
<h6>신입</h6>
<h6>정보통신공학과</h6>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 하단 -->
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="white-box">
<h5 class="fw-bold">About Me</h5>
<p>자기소개</p>
</div>
</div>
<div class="col-md-6">
<div class="white-box">
<h5 class="fw-bold">Portfolio</h5>
<p>포트폴리오</p>
<div class="border-top pt-2">
<h5 class="fw-bold">Skills</h5>
<span class="badge rounded-pill text-bg-dark">HTML5</span>
<span class="badge rounded-pill text-bg-dark">JavaScript</span>
<span class="badge rounded-pill text-bg-dark">CSS3</span>
<span class="badge rounded-pill text-bg-dark">Illustrator</span>
<span class="badge rounded-pill text-bg-dark">Photoshop</span>
</div>
</div>
</div>
<div class="col-md-3">
<div class="white-box">
<h5 class="fw-bold">Contact</h5>
<p>연락처</p>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/6ff6033621.js" crossorigin="anonymous"></script>
</body>
</html>