-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (45 loc) · 1.26 KB
/
index.html
File metadata and controls
52 lines (45 loc) · 1.26 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="en">
<head>
<meta charset="UTF-8" />
<title>웹 프로그래밍</title>
</head>
<body>
<center>
<header>
<h1>웹 프로그래밍 HTML 과제</h1>
<p><b>본 과제는 CSS, JS 없이 오직 HTML로만 제작되었습니다.</b></p>
<img src="interludeal.jpg" alt="JJS 프로필 사진" width="150" />
<section>
<h2><b>이름 :</b> 정재성</h2>
<p><b>전공 :</b> 정보보호학전공</p>
<p><b>학년 :</b> 2학년</p>
<p><b>학번 :</b> 92213093</p>
</section>
<p>
<b>JJS's</b>
<a href="https://github.com/Interludeal"><b>Github!</b></a>
</p>
</header>
<br />
<nav>
<h3><b>리스트</b></h3>
<ul style="list-style: none; padding: 0">
<li>
<a href="table.html"><b>JJS's 2025 1학기 강의 시간표</b></a>
</li>
<li>
<a href="media.html"><b>JJS's 취향 소개</b></a>
</li>
<li>
<a href="form.html"><b>JJS's 수강신청 체험</b></a>
</li>
</ul>
</nav>
<br />
<footer>
<p><b>감사합니다.</b></p>
</footer>
</center>
</body>
</html>