-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy.html
More file actions
31 lines (26 loc) · 771 Bytes
/
my.html
File metadata and controls
31 lines (26 loc) · 771 Bytes
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>L.I.T.E | My 페이지</title>
<link rel="stylesheet" href="my.css" />
</head>
<body>
<header>
<button onclick="history.back()" class="back-btn" aria-label="뒤로가기">
← 뒤로
</button>
<h1>📂 나의 페이지 (My)</h1>
<div style="width: 40px"></div>
</header>
<main>
<div class="tabs">
<div class="tab active" id="tab-suhang">📘 수행평가</div>
<div class="tab" id="tab-forms">📝 신청서</div>
</div>
<div id="content" class="card"></div>
</main>
<script src="my.js"></script>
</body>
</html>