HtmlSchriftart는 HTML 언어를 사용한 글꼴인데, 이 글꼴은 게다가 독일어에서도 사용되므로 다른 모든 기능은 다른 HTML 글꼴과 동일합니다.Html. HTML에는 글꼴 스타일, 색상 및 글꼴 태그를 사용하여 텍스트 값의 글꼴 크기와 색상을 설정하는 스타일 속성이 있습니다. 일반적으로 글꼴은 Java, PHP 등과 같은 응용 프로그래밍 언어를 작성할 때마다 모든 언어에 중요합니다. 우리는 코드를 일반 영어로 작성하고 자체 컴파일러를 사용하여 일부 글꼴 스타일을 가지며 코드를 기계 수준으로 변환합니다. HTML 글꼴과 같은 언어는 사용자 매력을 위한 UI 레벨 코드입니다.
구문:
Htmlfonts(Schriftart)는 CSS 스타일의 일부 스타일 속성을 사용하고 있으며, 글꼴 태그를 사용하여 글꼴 글꼴, 크기 및 색상을 선언했습니다.
<html> <body> <font face="" color="" size=""> </font> </body> </html>
위 코드는 웹 페이지에서 선언하고 사용하는 html 글꼴의 기본 구문 중 하나입니다. 또한 볼드체, 이탤릭체, 밑줄 보기와 같은 다양한 스타일 속성으로 글꼴을 표시했습니다.
다음은 언급된 예시입니다.
코드:
<html> <body> <font size="19">Welcome</font><br /> <font size="20">To</font><br /> <font size="33">My Domain</font> </body> </html>
출력:
Code:
<html> <body> <font size="-19">Welcome</font><br /> <font size="+20">To</font><br /> <font size="-33">My Domain</font> </body> </html>
Output:
Code:
<html> <body> <basefont face="Times New Roman,arial, verdana, sans-serif" size="3" color="green"> <p>Welcome</p> <h2>To My Domain</h2> <p><font size="+23" color="pink"> Welcome User </font></p> <p><font face="Calibri" size="-18" color="Red"> Welcome To My Domain </font></p> </body> </html>
Output:
Explanation to the above examples: In the above three examples, we discussed the font sizes with different ranges; the above three outputs are executed in the chrome browsers the font size whatever we mention in the code it will be displayed in the browser the final example we have seen the font size, styles, and colors.
We have seen the html schriftart(font) is angerman language fonts; we will use the fonts to translate the html predefined tags to convert the german language, but the functionalities of the fonts are to be the same as we discussed in the font features, colors, and sizes. In CSS, it will declare in the font style attributes it will mention all the font behaviors.
위 내용은 HTML 글꼴의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!