내돈내산.zip

html5 태그 정리 본문

[공략] 가로매/[공략]리빙포인트

html5 태그 정리

전윤전 2021. 8. 11. 13:30
반응형

차차, 진도에 맞게 추가하겠다.

 

요소 설명(뜻) 유의사항
<!-- --> 주석  
<!doctype html> document type declaration 해당 웹페이지가, html을 사용함을 나타낸다.
<b> bold <strong>과 효과 동일
<big> big  
<body> the body 표시되는 페이지 내용
<button> button  
<br> (line) break XTML은 <br/>선호
<del> deleted 이거
<em> emphasize <i>와 동일
<h1>~<h6> heading 숫자가 클 수록, 사이즈가 크다.
<head> The head 해당 웹페이지의 필요정보를 담고 있다. (눈엔 보이지 않는다)
body 전에 와야한다.
<hr> horizontal line  
<html> creates an HTML webpage  
<i> italic <em>과 효과 동일
<ins> inserted 이거
<p> paragraph  
<small> small  
<strong> strong <b>와 동일
굵게
<sub> subscripted 아래첨자
<sup> superscripted 위첨자
<title> title 탭 제목

 

유의사항

<b>,<i>은 각각 bold와 italic을 나타내지만

<strong>, <em>은 텍스트가 중요하다는 것을 나타냄.

Comments