์ถ๋ ฅํ ์น ํ์ด์ง์ ํ์์ ๋ธ๋ผ์ฐ์ ์๊ฒ ์๋ ค์ค
<!DOCTYPE html>
<!-- HTML5๋ฅผ ์ฌ์ฉํ๋ค๋ ๊ฒ์ ๋ธ๋ผ์ฐ์ ์๊ฒ ์๋ ค์ฃผ๊ธฐ ์ํ ๊ฒ -->
<html>
, <head>
, <body>
<html>
<head>
<title>
, <style>
, <link>
, <script>
๋ฑ๋ฑ ์ฌ์ฉ<body>
<html lang="ko">
<head>
<!-- ๋ฉํ๋ฐ์ดํฐ์ค์ -->
<mata charset="utf-8">
<mata name="keywords" content="HTML, CSS, XML, XHTML, JavaScript">
<mata name="description" content="Web tutorials on HTML and CSS">
<mata name="author" content="John Doe">
<!-- ๋ฌธ์์ ์ ๋ชฉ ์ค์ -->
<title>๋ฌธ์์ ๋ชฉ</title>
<!-- ์ธ๋ถ ๋ฆฌ์์ค์ ์ฐ๊ณ -->
<link rel="stylesheet" href="./css/style.css">
<!-- ๋ด๋ถ css์ ์ธ -->
<style></style>
<!-- ๋ด๋ถ js์ ์ธ -->
<script></script>
</head>
<body>
</body>
</html>