-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
134 lines (128 loc) · 4.78 KB
/
index.html
File metadata and controls
134 lines (128 loc) · 4.78 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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 모바일 화면을 위한 meta 태그, 사용중인 장치와 동일하게 뷰포트의 너비를 설정-->
<title>안녕하세요!</title>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="images/blue_rose.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<div class="logo">
<h3>GHeeJeon</h3>
</div>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/skills">Skills</a></li>
<li><a href="/resume">Resume</a></li>
<li><a href="/portfolio">Portfolio</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</nav>
</header>
<div class="container-profile">
<div class="profile">
<div class="profile-image">
<img src="https://gheejeon.github.io/img/prof_pic.jpg" alt="profile">
</div>
<div class="profile-name">
<h1>JiHee Jeon</h1>
<p>Frontend developer</p>
</div>
<div class="profile-icon">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-skype"></a>
<a href="#" class="fa fa-linkedin"></a>
<a href="#" class="fa fa-rss"></a>
</div>
</div>
</div>
<div class="container-details">
<div class="details-introduction">
<h1>About me</h1>
<p>Hello! I am JiHee. <span class="highlight-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</span>
</p>
</div>
<div class="details-information">
<h2>Personal Details</h2>
<table>
<tr>
<th>Birthday date</th>
<td>07-01-1999</td>
</tr>
<tr>
<th>Phone</th>
<td>+82 10-1234-5678</td>
</tr>
<tr>
<th>E-mail</th>
<td>cv@jackbrown.com</td>
</tr>
<tr>
<th>Website</th>
<td>www.jackbrown.com</td>
</tr>
<tr>
<th>Address</th>
<td>123 London, UK</td>
</tr>
<tr>
<th>Job status</th>
<td>
<button type="button" class="freelance">Freelance</button>
</td>
</tr>
</table>
</div>
<div class="details-interests">
<h2>My Interests</h2>
<div class="interest-buttons">
<div class="interest-button">
<i class="fas fa-gamepad fa-lg"></i>
<span class="button-text">GAMES</span>
</div>
<div class="interest-button">
<i class="fas fa-headphones fa-lg"></i>
<span class="button-text">MUSIC</span>
</div>
<div class="interest-button">
<i class="fas fa-plane fa-lg"></i>
<span class="button-text">TRAVEL</span>
</div>
<div class="interest-button">
<i class="fab fa-apple fa-lg"></i>
<span class="button-text">MAC OS</span>
</div>
<div class="interest-button">
<i class="fas fa-video fa-lg"></i>
<span class="button-text">CINEMA</span>
</div>
<div class="interest-button">
<i class="fas fa-coffee fa-lg"></i>
<span class="button-text">COFFEE</span>
</div>
<div class="interest-button">
<i class="fas fa-truck fa-flip-horizontal fa-lg"></i>
<span class="button-text">CARS</span>
</div>
<div class="interest-button">
<i class="far fa-money-bill-alt fa-lg"></i>
<span class="button-text">MONEY</span>
</div>
</div>
</div>
</div>
</body>
</html>