HTML 기본 예제


HTML 문서

모든 HTML 문서는 형식선언으로 시작한다 : <!DOCTYPE html>.

HTML 문서 자체는 <html>로 시작해서 </html>로 끝난다.

HTML 문서의 보이는 부분은 <body> 와 </body> 사이의 내용이다. 

Example

<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>
Try it Yourself »

HTML 제목

HTML 제목은 <h1> 부터 <h6> 태그로 정의된다.

Example

<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
Try it Yourself »

HTML 단락 (Paragraphs)

HTML 단락은 <p> 태그로 정의된다.

Example

<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>
Try it yourself »

HTML 링크

HTML 링크는 <a> 태그로 정의된다.

Example

<a href="http://www.w3schools.com">This is a link</a>
Try it yourself »

참고: 링크 주소는 href 속성(attribute)에 지정된다.


HTML 이미지

HTML 이미지는 <img> 태그로 정의된다.

Example

<img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">
Try it yourself »

촴고: 파일명(src), 대체 문자 (alt) 와  이미지의 크기(width and height)는 속성(attributes)으로 제공된다.