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, 1365🔥, 0💬
Popular Posts:
How to detect errors occurred in the json_decode() call? You can use the following two functions to ...
How to use the "send-one-way-request" Policy statement to call an extra web service for an Azure API...
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how ...
How to add request query string Parameters to my Azure API operation 2017 version to make it more us...
How to create a new API on the Publisher Dashboard of an Azure API Management Service? If you are ne...