Front-End/HTML
[HTML] font 태그
찐코딩
2021. 10. 6. 09:47
<!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>