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>
2017-02-20, 1052👍, 0💬
Popular Posts:
Where to find tutorials on OpenID? Here is a large collection of tutorials to answer many frequently...
How to access URL template parameters from "context.Request.Matched Parameters"object in Azure API P...
How to use the urllib.request.Request object to build more complex HTTP request? The urllib.request....
FYIcenter.com Online Tools: FYIcenter JSON Validator and Formatter FYIcenter JSON to XML Converter F...
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator"...