-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (105 loc) · 5.47 KB
/
index.html
File metadata and controls
139 lines (105 loc) · 5.47 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
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<title>Profile Page</title>
<link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">Welcome to my Profile page</a>
</div>
</nav>
<div class = "container mb-5 mt-5">
<div class="d-inline-flex p-2 bg-light text-dark">
<h1> Hyejin Yoo </h1>
</div>
<div id="Personal Information">
<h2 class="display-6 mt-5">Personal Inform</h2>
<dl class="row">
<dt class="col-sm-3">NAME</dt>
<dd class="col-sm-9">Hyejin Yoo</dd>
<dt class="col-sm-3">NATION</dt>
<dd class="col-sm-9">KOR</dd>
<dt class="col-sm-3">MAJOR</dt>
<dd class="col-sm-9">Software</dd>
<dt class="col-sm-3">EMAIL</dt>
<dd class="col-sm-9">trashgeun@gmail.com</dd>
<dt class="col-sm-3">GITHUB</dt>
<dd class="col-sm-9">HyejinU</dd>
<dt class="col-sm-3">INTERESTS</dt>
<dd class="col-sm-9">Cooking</dd>
</dl>
<h2 class="display-6 mt-5">History</h2>
<ul class="list-group list-group-flush">
<li class="list-group-item">Born in Jeonju in korea</li>
<li class="list-group-item">Osong elementary school</li>
<li class="list-group-item">Solvit middle school</li>
<li class="list-group-item">Jeonbuk Girl's high school</li>
<li class="list-group-item">(now) Sungkyunkwan university</li>
<li class="list-group-item">(now) SKKU specialized Major Ambassador Software Alimi 10th
<img src = "photo.png" class ="rounded" height="250" width="170"/>
</li>
</ul>
<h2 class="display-6 mt-5">Links</h2>
<div class="d-flex flex-row bd-highlight mb-3">
<div class="p-2 bd-highlight"><a href = "https://instagram.com/b08_i?r=nametag" target="_blank">Instagram</a></div>
<div class="p-2 bd-highlight"><a href = "https://github.com/hyejinU" target="_blank">GitHub</a></div>
<div class="p-2 bd-highlight"><a href = "https://www.youtube.com/watch?v=9Gj47G2e1Jc" target="_blank">Today's Music</a></div>
</div>
<h2 class="display-6 mt-5">SKKU schedule</h2>
<div class="shadow p-3 mb-5 bg-body rounded">
<table>
<thread>
<tr>
<th>Mon</th>
<th>Tue</th>
<th>Wed</th>
<th>Thu</th>
<th>Fri</th>
</tr>
</thread>
<tbody>
<tr>
<td></td>
<td>Problem Solving Techniques</td>
<td>System Program</td>
<td></td>
<td></td>
</tr>
<tr>
<td>System Program</td>
<td></td>
<td></td>
<td>Problem Solving</td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td>Algorithms</td>
<td>Linear Algebra</td>
<td></td>
</tr>
<tr>
<td>Algorithms</td>
<td>Linear Algebra</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>JAVA Programing Lab</td>
<td></td>
<td></td>
<td>Open Source Software Practice</td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>