Html 具有一些功能,可以更方便地显示网页,并且 html 文档包含所有 html 标签元素的嵌套格式等结构。正如我们已经看到的,每个标签元素都包含左尖括号和右尖括号(<>,>)。每个 html 元素的扩展名都由成对的标签(如开始标签和结束标签)来指示。 html 文本。 html中有n个标签,用于在用户视角中显示定制级别的网页。一些标签如Example
段落标签是在html文档下定义的,涉及网页中显示的文本内容。
语法:
html为html中的短信属性提供了很多标签;它还有一些元素类型的修饰符。
<html> <head> </head> <body> <strong> ---some text--</strong> </body> </html>
以上代码是html网页中文本属性的基本语法。我们还使用一些其他文本属性,例如“、、、、、 等”。这些是我们在网页中使用的 html 中的基本文本属性。我们还根据用户需求使用其他一些用户定义或定制的文本属性。
一般来说,html属性是Web文档中的特殊单词,因为它们会执行诸如之类的操作。打开和>关闭 html 属性;它将根据网页中的属性表现来控制元素的行为。文本还属性 html 元素类型的修饰符,在每个修饰符上,它将在每个 html 元素类型的默认功能上注明,或者它将为某些元素的类型提供无法正确或正确地执行某些功能的功能。网页。
在 html 文档中,属性被添加到使用 html 开始标记中,并且某些基本属性类型(如“必需属性”)将被特定元素类型所需要,以便特定元素类型功能正常工作,而另一个属性称为“可选属性”,它将用于修改 html 元素类型的默认功能。第三种类型,如“标准属性”,它支持许多 html 类型,最后“事件属性”用于使 html 元素类型指定在特定情况下运行的脚本。
某些 html 属性类型的功能将与修改后的 html 元素类型不同。 html 属性将调用具有值对的名称。每个元素都用“=”符号分隔,并且在 html 元素名称和值可以用单引号或双引号括起来之后,也将与 html 元素的开始标记一起写入。此外,一些包含某些字符的值将被保留;也就是说,它们不会在 html 中被引用。尽管如此,它仍然不支持 XHTML,因此一些属性值将不加引号;从 html 文档来看它可能被认为是不安全的。
大部分html元素都会采用html中的一些常用属性; id 属性(如 id 属性)它将提供全球格式的文档,而且它就像 html 元素的唯一标识符,它将使用 css 选择器样式来使用浏览器提供表示属性,以将注意力集中在特定的内容上html 元素或任何与其他内容的脚本相结合的内容都应该更改为演示场景。在html的动态网页中,我们将使用get和post等URL方法来附加网页的URL;它将直接针对文档中的特定 html 元素,并且通常也是网页的子部分,其 id 属性显示为 http://www.examples.com/html#attributes。
任何其他属性(如“class”)提供分类的 html 元素,或者看起来像类似的元素。它对于用于演示目的的 html 文档的语义目的非常有用。而且,类用于微格式类型,html文档类类型看起来像“符号”类型;它表明所有具有该类值的 html 元素都与基于 Web 的文档的主要 html 文本是从属协调的。此类类型的 html 元素必须与网页上页眉和页脚注释的呈现方式聚集并组合在一起,而不是出现在 html 文档源中出现的文本位置。
Moreover, CSS styles will be the presentation for the web documents user, or the Author will use the css style attributes for both non-attributable codes, which also looks with presentational properties of the html elements. The css style attributes will call the html based documents with the help of the class and id attributes for selecting the html elements with the style sheets for the web pages.
Following are the examples:
Code:
<html> <body> <h2>Samples</h2> <p>Welcome To My Domain</p> <a href="https://www.gmail.com">Please login</a> </body> </html>
Output:
Code:
<html> <head> <style> .sample { text-transform: uppercase; } .sample1 { text-transform: lowercase; } .sample2 { text-transform: capitalize; } </style> </head> <body> <p class="sample">Welcome to My Domain.</p> <p class="sample1">Welcome to My Domain.</p> <p class="sample2">Welcome to My Domain.</p> </body> </html>
Output:
Code:
<html> <head> <style> #sample{ font-size: 33px; font-weight: bold; font-family: Arial; color: green; transition:0.7s; } </style> </head> <body> <p id="sample">Welcome To my Domain</p> <script type="text/javascript"> var b = document.getElementById('sample'); setInterval(function() { b.style.opacity = (b.style.opacity == 0 ? 1 : 0); }, 1000); </script> </body> </html>
Output:
We have seen some HTML tags types like text elements; for the web pages, the text tags will be used for basic html documents. Some of the basic tags
etc this type of tags will be used for every html web-based documents. Some tags will be supported for browsers compatibility, and some tags will not be compatible.
以上是HTML 文本属性的详细内容。更多信息请关注PHP中文网其他相关文章!