-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathABOUT.html
53 lines (48 loc) · 1.27 KB
/
ABOUT.html
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>Life Calendar</title>
<link rel="stylesheet" href="stylesheet.css">
<script src="javascript.js"></script>
</head>
<body>
<header>
<a href="/">
<img class="logo" src="image/로고.png" alt="로고 이미지">
</a>
<div class="nav-container">
<ul class="nav-list">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">ABOUT</a>
</li>
<li>
<a href="/">로그인</a>
</li>
<li>
<a href="/">회원가입</a>
</li>
</ul>
</div>
</header>
<sidebar>ABOUT 사이드바</sidebar>
<main>About 메인</main>
<footer>
<div class="footer-container">
<p>
© 2024 All Rights Reserved.
<a href="">개인정보 보호</a>
|
<a href="">도움말</a>
|
<a href="">서비스 약관</a>
|
<a href="">연락처</a>
</p>
</div>
</footer>
</body>
</html>