본문 바로가기
Front/HTML

[HTML4] font(text) 관련 태그

by 시월해 2021. 4. 20.

* font 태그 : 글자와 관련된 태그

 

 text 서식과 관련된 태그 
* b 태그 : 텍스트 글자를 굵은 글자로 만들어주는 태그
* i 태그 : 텍스트 글자를 이탤릭체(기울어짐)로 만들어주는 태그
* small 태그 : 텍스트 글자를 작은 글자로 만들어주는 태그
* sub 태그 : 텍스트 글자를 아랫첨자로 만들어주는 태그
* sup 태그 : 텍스트 글자를 윗첨자로 만들어주는 태그
* ins 태그 : 텍스트 글자를 밑줄 글자로 만들어 주는 태그.
* del 태그 : 텍스트 글자를 취소선이 그어진 글자로 만들어주는 태그.


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<!-- font 태그 : 글자와 관련된 태그 -->
<font>Font 태그1</font><br>
<font size="1">Font 태그1</font><br>
<font size="2">Font 태그2</font><br>
<font size="3">Font 태그3</font><br>
<font size="4">Font 태그4</font><br>
<font size="5" color="#FF5E00">Font 태그5</font><br>
<font size="6" face="궁서체">Font 태그6</font><br>
<font size="7">Font 태그7</font><br>
<font size="8">Font 태그8</font><br>
</body>
</html>

 


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
	<p><b>이것은 볼드체입니다.</b></p>
	<p><i>이것이 이탤릭체.</i></p>
	<h3>이것은 <small>small</small> 태그입니다.</h3>
	<p>H<sub>2</sub>O / CO<sub>2</sub></p>
	<p>x<sup>2</sup> + y<sup>2</sup></p>
	<p><ins>이것은 밑줄 글자입니다.</ins></p>
</body>
</html>

'Front > HTML' 카테고리의 다른 글

[HTML4] ul, ol, li(목록 관련) 태그  (0) 2021.04.20
[HTML4] a 태그(하이퍼링크)  (0) 2021.04.20
[HTML4] blockquote(인용) 태그  (0) 2021.04.20
[HTML4] 태그의 속성 개념  (0) 2021.04.20
[HTML4] p, hn , hr, span 태그  (0) 2021.04.20