Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is the Second Level Structure of an XHTML Document
What is the Second Level Structure of an XHTML Document? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags
✍: FYIcenter.com
The second level structure of an XHTML document consists of two parts:
The following tutorial sample shows you how the HTML second level structure looks like:
<?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> (Head structure) </head> <body> (Body structure) </body> </html>
2007-05-12, 5000👍, 0💬
Popular Posts:
How can I implement a variable field width with printf? That is, instead of something like %8d, I wa...
How to create arrays in JavaScript? We can declare an array like this var scripts = new Array(); We ...
From performance point of view how do they rate ? Repeater is fastest followed by Datalist and final...
What is a measure in OLAP ? Measures are the key performance indicator that you want to evaluate. To...
How To Write a Minimum Atom 1.0 Feed File? - RSS FAQs - Atom Feed Introduction and File Generation I...