일부 서식 요소, 굵게, 크게, 기울임꼴, 작게, 강하게, 아래 첨자, 위 첨자, 삽입 및 삭제된 태그.

3906 단어
1.PARAGRAPH 태그
<p></p> 이것은 단락 태그입니다. 단락을 작성하는 데 사용합니다.

<p> This is paragraph</p>


2.볼드 태그
<b></b> 이것은 굵게 표시되는 태그입니다. 모든 텍스트를 굵게 표시하는 데 사용됩니다.

<p><b> This is bold text</b></p>


3.빅 태그
<big></big> 큰 태그입니다. 텍스트 크기를 늘리는 데 사용합니다.

<p><big>This is big text.</big></p>


4.이탤릭 태그
<i></i> 기울임꼴 태그입니다. 텍스트를 기울임꼴 텍스트로 만듭니다.

<p><i>This is italic text.</i></p>


5. 작은 태그
<small></small> 이것은 작은 태그입니다

<p><small>This is small tag.</small></p>


6.스트롱 태그
<strong></strong> 강력한 태그입니다.

<p><strong>This is strong text.</strong></p>


7.구독 태그<sub></sub> 이것은 첨자 태그입니다.

<p><sub>This is subscripted text.</sub></p>


8. 슈퍼스크립트 태그
<sup></sup> 이것은 위 첨자입니다
꼬리표.

<p><sup>This is superscripted text.</sup></p>


9.삭제된 태그
<del></del> 삭제된 태그입니다.

<p><del>I am deleted text</del></p>


10.삽입된 태그
<ins></ins> 관심 태그입니다

<p><ins>This is interested text.</ins></p>


모든 코드 형식

<html>
<head>
<title>Formating Element</title>
</head>
<body>
<p> This is paragraph</p>
<p><b> This is bold text</b></p>
<p><big>This is big text.</big></p>
<p><i>This is italic text.</i></p>
<p><small>This is small tag.</small></p>
<p><strong>This is strong text.</strong></p>
<p><sub>This is subscripted text.</sub></p>
<p><sup>This is superscripted text.</sup></p>
<p><del>I am deleted text</del></p>
<p><ins>This is interested text.</ins></p>
</body>
</html>

좋은 웹페이지 즐겨찾기