Tools, FAQ, Tutorials:
HTML 'base' Tag/Element
What Is the HTML "base" Tag/Element?
✍: FYIcenter.com
The "base" element is an optional sub-element of the "head" element.
The "base" element specifies a base URL for all the hyper links in XHTML
document. It has one required attribute called "href" to allow you to
specify the base URL.
Here is an example:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <base href="http://dev.fyicenter.com/HTML/" /> <title>My First XHTML Document</title> </head> <body> <p><img src="/_icon_HTML.png" alt="HTML" /></p> </body> </html>
If you view this document in a browser, the image will be fetched from http://dev.fyicenter.com/HTML/_icon_HTML.png.
⇒ HTML 'script' Tag/Element in 'head' Element
⇐ HTML Author 'meta' Tag/Element
2017-06-23, 1636🔥, 0💬
Popular Posts:
Tools, FAQ, Tutorials: JSON Validator JSON-XML Converter XML-JSON Converter JSON FAQ/Tutorials Pytho...
How to use "link" command tool to link objet files? If you have object files previously compiled by ...
How To Read a File in Binary Mode in PHP? If you have a file that stores binary data, like an execut...
How To Copy Array Values to a List of Variables in PHP? If you want copy all values of an array to a...
Can Multiple Paragraphs Be Included in a List Item? Yes. You can include multiple paragraphs in a si...