AI소프트웨어과 출력 - 제목, 작성자, 등록일, 조회수, 내용
코드컴뱃 웹디 3레벨
작성자 전북인공지능고등학교 등록일 25.04.03 조회수 142

<!-- The <p> tag is used to group paragraphs of text. -->

<!-- Most tags need a opening tag and a closing tag. -->

<!-- An opening tag is: <p>, the closing tag is </p> -->

<!-- The / marks the end of an HTML element. -->

<!-- Note the / is before p, not after! -->

 

<!-- <br> tags are for forcing a line break... -->

<!-- ... <p> tags are for grouping paragraphs of text. -->

<p>HTML tags can be on the same line, or...</p>

<p>

    ... on different lines! Just make sure the opening and closing tags exist.

</p>

<!-- Add a <p> tag below: -->

<p>

    This should be a paragraph. Surround me!

</p>

<!-- Add a </p> tag below: -->

<p>

    Meaningful text goes here.

</p>

<!-- Finally add a <p> and </p> with text between. -->

<p>

    sdfdsf

</p>