HTML_basic1
The <h1> to <h6> tags are used to define HTML headings.
<h1> defines the most important heading. <h6> defines the leat important heading.
The <br> tag inserts a single line break. The <br> tag is useful for writing addresses or poems. The <br> tag is an empty tag which means that it has no end tag.
*여는 태그만 있고 닫는 태그 없음.
단락이 존재한다는 것을 의미론적으로 표현할 수 있는 <p>태그와 구분하기.
The <img>
tag is used to embed an image in an HTML page.
Images are not technically inserted into a web page; images are linked to web pages. The <img>
tag creates a holding space for the referenced image.
The required src
attribute specifies the URL of the image.
The width
attribute specifies the width of an image, in pixels.
부모 태그, 자식 태그
태그가 서로 포함 관계에 있을 때 포함하고 있는 태그를 부모 태그, 포함된 태그를 자식 태그라고 한다.
OL : Ordered List
UL : Unordered List
Li: List
댓글을 작성해보세요.