Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What Does an XHTML Document Look Like
What Does an XHTML Document Look Like? - XHTML FAQs - Introduction To XHTML 1.0
✍: 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 will look 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>
2007-05-12, 4918👍, 0💬
Popular Posts:
Can you explain project life cycle ? Figure :- 12.2 Life cycle of a project There are five stages of...
How can I include comments in HTML? An HTML comment begins with "<!--", ends with "-->...
Can you write a program to interchange 2 variables without using the third one? a = 7; b = 2; a = a ...
How To Create an Add-to-NewsGator Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS News...
What Are the Parameter Modes Supported by PL/SQL? - Oracle DBA FAQ - Creating Your Own PL/SQL Proced...