Tools, FAQ, Tutorials:
HTML 'style' Tag/Element
What Is an HTML "style" Tag/Element?
✍: FYIcenter.com
A "style" element is an optional sub-element of the "head" element.
A "link" element is used to specify Cascading Style Sheet (CSS) entries.
Here is good example of a style element:
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>My Second CSS Example</title> <style type="text/css"> body {background-color: #dddddd} </style> </head> <body> <p>Hello world!</p> </body> </html>
If you save the above document as hello.html, and view it with Internet Explorer, you will see a gray background specified by the CSS entry in the "style" element.
⇒ HTML Body Tag and Block Level Tags
2024-01-10, 1569🔥, 0💬
Popular Posts:
What Is HTML? HTML (HyperText Markup Language) is the standard markup language for creating Web page...
How to use .NET CLR Types in Azure API Policy? By default, Azure imports many basic .NET CLR (Common...
How To Avoid the Undefined Index Error in PHP? If you don't want your PHP page to give out errors as...
What is EPUB 2.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 2.0 Metadata "dc:publisher" ...
What is EPUB 3.0 Metadata "dcterms:modified" property? EPUB 3.0 Metadata "dcterms:modified" is a req...