-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudy.html
More file actions
52 lines (43 loc) · 1.01 KB
/
study.html
File metadata and controls
52 lines (43 loc) · 1.01 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>Portfolio</title>
<link rel="stylesheet" href="../css/common.css">
<link rel="stylesheet" href="../css/layout.css">
<link rel="stylesheet" href="../css/board.css">
</head>
<body>
<!-- 사이드바 -->
<div class="sidebar">
<div class="profile">
<h2>Lee Jehui</h2>
<p>jbbok89@gmail.com</p>
</div>
<div class="menu">
<ul>
<li><a href="index.html">Profile</a></li>
<li><a href="project.html">Project</a></li>
<li>
<a href="board_web.html">Study</a>
<ul class="sub_menu">
<li><a href="board_web.html">Web <span class="count">(1)</span></a></li>
</ul>
</li>
<li><a href="ctf.html">CTF</a></li>
</ul>
</div>
</div>
<div class="content">
<div class="grid">
<a href="p_view.html" class="card">
<img src="img/project_1.png">
<div class="card-text">
<h3>SQL Injection</h3>
<p>ddd</p>
</div>
</a>
</div>
</div>
</body>
</html>