diff options
author | ville <ville@localhost> | 2002-09-08 19:30:28 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2002-09-08 19:30:28 +0000 |
commit | b0e59046c84b742f207d1bdc8248f78b7c2a5579 (patch) | |
tree | caedf827e9cf31a0475b9c13f1e06242077fbb5a | |
parent | 2f748ebc752bd0a8dfa32fbbb622943d0c3b7853 (diff) | |
download | markup-validator-b0e59046c84b742f207d1bdc8248f78b7c2a5579.zip markup-validator-b0e59046c84b742f207d1bdc8248f78b7c2a5579.tar.gz markup-validator-b0e59046c84b742f207d1bdc8248f78b7c2a5579.tar.bz2 |
Common SSI chunk for selecting the doctype.
-rwxr-xr-x | htdocs/doctype-select.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/htdocs/doctype-select.html b/htdocs/doctype-select.html new file mode 100755 index 0000000..b17886c --- /dev/null +++ b/htdocs/doctype-select.html @@ -0,0 +1,11 @@ +<select id="doctype" name="doctype"> + <option value="Inline">(detect automatically)</option> + <option>XHTML 1.0 Strict</option> + <option>XHTML 1.0 Transitional</option> + <option>XHTML 1.0 Frameset</option> + <option>HTML 4.01 Strict</option> + <option>HTML 4.01 Transitional</option> + <option>HTML 4.01 Frameset</option> + <option>HTML 3.2</option> + <option>HTML 2.0</option> +</select> |