HTML의 글꼴 태그는 웹페이지나 HTML 문서를 더욱 매력적으로 만드는 데 사용되는 가장 중요한 속성 중 하나입니다. 포함된 텍스트의 크기, 색상, 스타일을 변경하는 속성이 있습니다. 글꼴 태그를 사용하면 웹 페이지의 크기, 색상, 글꼴을 동일한 텍스트 형식으로 만들 수 있습니다. 이 태그는 주로 크기, 얼굴 또는 유형, 색상과 같은 세 가지 주요 속성에 대해 작동합니다. 글꼴 태그는 HTML 문서의 블록 텍스트의 일부 기능을 변경하기 위해 HTML의 인라인 요소로 작동합니다. 안에 포함된 텍스트입니다. 태그는 포함된 텍스트의 스타일을 정의하는 데 사용됩니다.
구문:
<font size =" " face =" " color=" ">
<body> <p> <font size="2" color="blue" face="Calibri"> </font> </p> </body>
이 태그는 글로벌 속성과 이벤트 속성도 지원합니다. 또한 아래에 나열된 몇 가지 다른 속성도 지원합니다.
Attribute Name | Detail Description |
Size | This attribute is used to define a specific size for text in between 1 to 7. |
Face or type | This attribute is used to define the font type for the included text. |
Color | This attribute is used to show enclosed text in a different color. |
Weight | This attribute defines the boldness of the text of the font tag. |
예시 #1
속성 값으로 글꼴 태그 정의:
<!DOCTYPE html> <html> <head> <title>Font Tag in HTML</title> </head> <body> <h2>Example of Font Tag in HTML </h2> <p>General text without any Font tag attribute value</p> <p> <font color="orange">Text having normal font size and font face . Only changing font color </font> </p> <p> <font face="cursive">Text having different font face.</font> </p> <p> <font size="3">Text with Increased font size having default font type. </font> </p> </body> </html>코드:
출력:
예시 #2
CSS를 통해 정의된 속성 값으로 글꼴 태그를 정의합니다.
<!DOCTYPE html> <html> <head> <title>Font Tag in HTML</title> </head> <body> <h2>Example of Font Tag in HTML using CSS </h2> <p>Someone’s sitting in the shade today because someone plated a tree a long time ago. </p> <p style="color : lightgreen;"> Someone’s sitting in the shade today because someone plated a tree a long time ago. </p> <p style="font-family : Book Antiqua; color: blue; " > Someone’s sitting in the shade today because someone plated a tree a long time ago. </p> <p style="font size:3px;"> Someone’s sitting in the shade today because someone plated a tree a long time ago. </p> </body> </html>코드:
출력:
예시 #3
이 예에서는 속성 값이 size인 Font 태그를 사용하고 있으며, 이는 아래와 같이 가장 낮은 크기에서 가장 높은 크기까지 텍스트를 정의합니다.
<!DOCTYPE html> <html> <head> <title>HTML font tag</title> </head> <body> <font size = "1">People may doubt what you say, but they will believe what you do.</font><br /> <br/> <font size = "2">People may doubt what you say, but they will believe what you do.</font><br /> <br/> <font size = "3">People may doubt what you say, but they will believe what you do.</font><br /> <br/> <font size = "4">People may doubt what you say, but they will believe what you do.</font><br /> <br/> <font size = "5">People may doubt what you say, but they will believe what you do.</font><br /> <br/> <font size = "6">People may doubt what you say, but they will believe what you do.</font><br/><br/> <font size = "7">People may doubt what you say, but they will believe what you do.</font> </body> </html>HTML 코드:
출력:
예시 #4
<!DOCTYPE html> <html> <head> <title>HTML tag with Font Type attribute</title> </head> <body> <font face = "Comic sans MS"> Correct one fault at a time. Concentrate on the one fault you want to overcome.</font><br/> <font face = "Bernard MT Condensed" color="Red" >Correct one fault at a time. Concentrate on the one fault you want to overcome. </font><br/> <font face = "Algerian">Correct one fault at a time. Concentrate on the one fault you want to overcome. </font><br/> <font face = "Book Antiqua" size="5">Correct one fault at a time. Concentrate on the one fault you want to overcome. </font><br/> <font face = "Aharoni"> Correct one fault at a time. Concentrate on the one fault you want to overcome.</font><br/> <font face = "AR BERKLEY" >Correct one fault at a time. Concentrate on the one fault you want to overcome. </font><br/> </body> </html>HTML 코드:
출력:
예시 #5
<!DOCTYPE html> <html> <head> <title>HTML Font tag-Color </title> </head> <body> <font color = "#cc0066"><b>It is terrible thing to see and have no vision</b></font><br> <font color = "#66ff33"><b>Today's preparation </b></font> <br> <font color = "#0000cc"><strong>Success depends on your backbone not your wishbone.</strong></font><br /> <font color = "#cc3300"><b>Patience makes lighter what sorrow may not heal</b></font> <br> <font color = "#666600"><b>Hold fast to dreams, for if dreams die, life is broken winged bird that cannot fly </b></font> <br> </body> </html>HTML 코드:
출력:
위 내용은 HTML의 글꼴 태그의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!