HTML - 상대경로와 절대경로
/ ./ ../
- 상대경로와 절대경로중 상대경로를 쓰도록한다. 절대경로의 경우는 수정할것이 많아지기때문이다.
ex) 왼쪽 상대경로 오른쪽 절대경로
홈페이지를 만들기위한 폴더를 생성하고 파일을 추가하였다. 서로 연결되게 상대경로로 이어줬다.
index
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<a href ="index.html">홈</a>
<a href ="notice/list.html">공지사항목록</a>
<a href ="member/login.html">로그인</a>
<a href ="member/signup-agree.html">회원가입</a>
<h1>index 페이지</h1>
</body>
</html>
댓글남기기