以下文章“HTML 字体样式”概述了 HTML 中最常用的字体样式。 HTML,俗称超文本标记语言,是创建 Web 应用程序和网站所必需的最基本、最关键的语言或脚本之一。这就像网络应用程序开发的支柱,因为所有标签和其他功能构成了它的底层组件。
所有的前端开发也是基于HTML脚本。这只能用于提供标记标签,为了增强这些标签的外观和感觉,我们有另一个非常流行的库,CSS,它代表级联样式表。这可以用来实现 HTML 所需的各种样式。字体和样式构成了网站的主要部分,在本文中,我们将为您提供大多数 HTML 字体样式的列表。
除了提高内容可读性之外,字体在使网站更加用户友好、吸引更多流量方面发挥着重要作用。字体颜色和字体还取决于计算机和使用其的浏览器,并且 HTML 也取决于计算机和浏览器。标签还用于向网站上的文本添加样式、颜色、大小。
;标签是最常用也是最重要的标签之一,可用于为您的网页构建良好的外观和感觉。打开的后面的文本是标签将保持相同的方式,除非并且直到被 关闭。标签。
有一些与 HTML 字体样式相关的基本功能和特性,它们是:
内容字体大小可以通过使用 size 属性来设置。可接受的范围值从 1(最小数)到 7(最大数)。任何字体类型的默认大小都是 3。
示例,
<!DOCTYPE html> <html> <head> <title>Setting Basic Font Size</title> </head> <body> <font size = "1">Font size = "1"</font><br /> <font size = "2">Font size = "2"</font><br /> <font size = "3">Font size = "3"</font><br /> <font size = "4">Font size = "4"</font><br /> <font size = "5">Font size = "5"</font><br /> <font size = "6">Font size = "6"</font><br /> <font size = "7">Font size = "7"</font> </body> </html>
相对字体大小用于确定和指定比实际存在的当前字体大小大多少个尺寸和小多少个尺寸。可以这样指定:
<font size = "+f"> or by writing <font size = "−f">
示例,
<!DOCTYPE html> <html> <head> <title>Relative Font Size</title> </head> <body> <font size = "-1">Font size = "-1"</font><br /> <font size = "+1">Font size = "+1"</font><br /> <font size = "+2">Font size = "+2"</font><br /> <font size = "+3">Font size = "+3"</font><br /> <font size = "+4">Font size = "+4"</font> </body> </html>
字体大小和相对字体大小设置之后的另一类是字体设置。这构成了上面列出的属性的关键部分。这可以通过使用face属性来设置,但应该始终记住,如果指定使用此字体值的用户没有在其系统中安装此字体,他们将无法看到它。相反,只有适用于该特定用户计算机的默认字体才会可见。
示例,
<!DOCTYPE html> <html> <head> <title>Font Face</title> </head> <body> <font face = "Times New Roman" size = "5">Times New Roman</font><br /> <font face = "Verdana" size = "5">Verdana</font><br /> <font face = "Comic sans MS" size =" 5">Comic Sans MS</font><br /> <font face = "WildWest" size = "5">WildWest</font><br /> <font face = "Bedrock" size = "5">Bedrock</font><br /> </body> </html>
示例,
<font face = "arial,helvetica"> <font face = "Lucida Calligraphy,Comic Sans MS,Lucida Console">
这是构成 HTML 字体和样式列表的关键部分和组件的另一个属性。在这种字体中,颜色是通过使用任何颜色属性来设置的;可以通过使用指定颜色的十六进制代码和颜色名称来获取所需的颜色。
示例,
<!DOCTYPE html> <html> <head> <title>Setting Font Color</title> </head> <body> <font color = "#FF00FF">This text is in pink</font><br /> <font color = "red">This text is red</font> </body> </html> <basefont>
Example,
<!DOCTYPE html> <html> <head> <title>Setting Basefont Color</title> </head> <body> <basefont face = "arial, verdana, sans-serif" size = "2" color = "#ff0000"> <p>This is the page's default font.</p> <h2>Example of the <basefont> Element</h2> </body> </html>
HTML font and styles are among the most critical components and features that cannot be overlooked and can give a very good shape and design to your website. When we talk about the latest javascript libraries available in the market, they contain all these and several other font and styles. For the basic HTML, this still needs to be done manually. I hope you liked our article. Stay tuned to our blog for more articles like these.
以上是HTML 字体样式的详细内容。更多信息请关注PHP中文网其他相关文章!