Tools, FAQ, Tutorials:
XHTML Document Example
What Does an XHTML Document Look Like?
✍: FYIcenter.com
An XHTML document is a normal text file with predefined tags mixed with the text contents
of the document. Tags are enclosed in pairs of angle brackets: "<" and ">".
Below is how a simple XHTML document looks like if you open it in a text editor:
<?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> <title>My First XHTML Document</title> </head> <body> <p>Hello world!</p> </body> </html>
2024-01-31, ∼2189🔥, 0💬
Popular Posts:
How To Pass Arrays By References? in PHP? Like normal variables, you can pass an array by reference ...
What is EPUB 3.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 3.0 Metadata "dc:publisher" ...
How to reinstall npm with a node version manager? I am getting permission errors with the current ve...
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML ...
How to use the XML to JSON Conversion Tool at freeformatter.com? If you want to try the XML to JSON ...