HTML

index.html

dev23 2021. 7. 15. 22:33
반응형

* index.html 

- 기본적으로 찾아가는 페이지

- 브라우저는 자동으로 index.html 파일을 찾아감.

 

* 라우터

- /index.html

<body>

  <a href="https://naver.com">NAVER</a>

  <a href="/about">About</a>

</body>

-------------------------------------------------------------

- /about/index.html

<body>

    <a href="/">Home</a>

    About!!

</body>

반응형