Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter15 : font 본문

WEB.HTML

chapter15 : font

GAWON 2023. 5. 18. 09:20
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<h1>글꼴 크기</h1>
	<font size="1">글꼴 크기 1</font>
	<font size="2">글꼴 크기 2</font>
	<font size="3">글꼴 크기 3</font>	<!-- 기본 크기 3 -->
	<font size="4">글꼴 크기 4</font>
	<span style="font-size: 5px">글꼴 크기 5</span>	<!-- 동적 크기 변경 -->
	<font size="6">글꼴 크기 6</font>
	<font size="7">글꼴 크기 7</font>
	<font size="8">글꼴 크기 8</font>	<!-- 글꼴 크기는 7까지만 가능 -->

	<font size="-1">글꼴 크기 2</font>		<!-- 기본 크기 -1 -->
	<font size="+1">글꼴 크기 4</font>		<!-- 기본 크기 +1 -->

	<hr>

	<h1>글꼴 색상</h1>
	<!-- #RGB : R(00~FF), G(00~FF), B(00~FF) -->
	<font color="#000000">이 문장은 검정색</font><br>
	<font color="#FFFFFF">이 문장은 하얀색</font><br>
	<font color="#FF0000">이 문장은 빨간색</font><br>
	<span style="color: yellow;">이 문장은 노란색</span><br>

	<hr>

	<!-- 윈도우 기본 글꼴 위치 : C:/Windows/Fonts > 각 글꼴 우클릭 > 속성 > 자세히 > 제목에 적힌 값 사용 -->
	<font face="맑은 고딕">맑은 고딕</font><br>
	<font face="궁서">가나다라마바사</font><br>
	<span style="font-family: 궁서체">가나다라마바사</span>

'WEB.HTML' 카테고리의 다른 글

chapter17 : form_tag  (0) 2023.05.18
chapter16 : a_tag  (0) 2023.05.18
chapter14 : table  (0) 2023.05.18
chapter13 : img_tag  (0) 2023.05.18
chapter12 : mata_tag  (0) 2023.05.18