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, 1366🔥, 0💬
Popular Posts:
How To Move Uploaded Files To Permanent Directory in PHP? PHP stores uploaded files in a temporary d...
How to validate the id_token signature received from Azure AD v2.0 authentication response? You can ...
Can Two Forms Be Nested? Can two forms be nested? The answer is no and yes: No. You can not nest two...
What validation keywords I can use in JSON Schema to specifically validate JSON Array values? The cu...
What is the "__init__()" class method? The "__init__()" class method is a special method that will b...