ホームページ > 記事 > ウェブフロントエンド > HTMLフォント
HtmlSchriftart は HTML 言語を使用したフォントであり、このフォントはドイツ語でも使用されており、他のすべての機能は他の HTML フォントと同じです。Html。 HTML には、フォント スタイル、色、フォント タグを使用してテキスト値のフォント サイズと色を設定するための style 属性があります。一般に、Java、phpなどのアプリケーションプログラミング言語を書くときは常にフォントが重要になります。通常の英語としてコードを書き、独自のコンパイラを使用してコードをマシンレベルに変換するフォントスタイルを持っています。 HTML フォントなどの言語は、ユーザーを引き付けるための UI レベルのコードです。
構文:
Htmlfonts(Schriftart) は CSS スタイルのいくつかのスタイル属性を使用しており、またフォント タグを使用してフォント フェイス、サイズ、色を宣言しています。
<html> <body> <font face="" color="" size=""> </font> </body> </html>
上記のコードは、Web ページで宣言および使用される HTML フォントの基本構文の 1 つです。また、フォントを太字、斜体、下線付きなどのさまざまなスタイル属性で表示しました。
以下に挙げる例を示します:
コード:
<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 中国語 Web サイトの他の関連記事を参照してください。