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>
Â
⇒⇒HTML Tutorials
2017-02-20, 950👍, 0💬
Popular Posts:
dev.FYIcenter.com is a Website for software developer looking for software development technologies,...
How to use the Atom Online Validator at w3.org? w3.org feed validation service is provided at http:/...
How To Read Data from Keyboard (Standard Input) in PHP? If you want to read data from the standard i...
How to create the Hello-3.0.epub package? I have all required files to create Hello-3.0.epub. To cre...
How to send an FTP request with the urllib.request.urlopen() function? If an FTP server supports ano...