본문 바로가기
프로그램 개발(분석, 설계, 코딩, 배포)/2.1.1 web_html

html 기본 구조

by 3604 2022. 12. 31.
728x90

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Deamweaver start</title>
</head>

<body>
<header>
<!--로고-->
   <h1><a href="#">회사이름</a></h1>

<!--메뉴-->
        <nav>
  <ul>
<li><a href="#">menu1</a></li>
<li><a href="#">menu2</a></li>
<li><a href="#">menu3</a></li>
  </ul>
        </nav>

<!--슬라이더-->
<ul>
<li>메인1</li>
<li>메인2</li>
<li>메인3</li>
</ul>

</header>
<section>
  <h2>본문 제목</h2>
</section>

<footer>Content for New footer Tag Goes Here</footer>
</body>
</html>

728x90
반응형

'프로그램 개발(분석, 설계, 코딩, 배포) > 2.1.1 web_html' 카테고리의 다른 글

html iframe object embed 차이  (0) 2023.11.20
HTML 문서 꾸미기  (0) 2023.09.24
web_html_ 회원가입 예제  (0) 2023.01.01
WEB_HTML_테이블  (0) 2023.01.01
web_html_폼 form 예제  (0) 2022.12.31