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中文網其他相關文章!