[TIL] HTML_WEB

정세비·2021년 5월 3일
0

HTML/CSS

목록 보기
2/7

HTML이 중요한 이유

웹의 개방성(accessibility)을 극대화해줌

기본문법 태그

<태그> 내용 </태그>

태그는 opening 태그와 closing 태그로 중요한 내용을 감싼다

<h1> ~<h6> 콘텐츠의 중요도 차이를 줄 수 있다. (폰트 크기)
<p> paragraph
<br> 줄바꿈
<b> bold
<u> underline
<strong> 강조(bold)
<i> italic
<em> 강조(italic)
<ol> ordered list
<ul> unordered list
<li> list
<div> generic container : new line (block level)
<span> generic container : same lind (inline container)
<a> link

속성(attribute)

<img src="image.jpg" width="100%"> 에서 "" 내부의 내용이 attribute에 해당

기본구조

<!doctype html>
<html>
<head>
	<title> </title>
    <meta charset="utf-8">
</head>
<body>
	<h1> <h1> ...
</body>
</html>
profile
파주

0개의 댓글