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, ∼2164🔥, 0💬
Popular Posts:
Where can I download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka? You can following ...
How to register and get an application ID from Azure AD? The first step to use Azure AD is to regist...
How to use "link" command tool to link objet files? If you have object files previously compiled by ...
Why I am getting "The Windows SDK version 8.1 was not found" error, when building my C++ application...
How To Merge Cells in a Column? If you want to merge multiple cells vertically in a row, you need to...