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中文网其他相关文章!