File: example.html

package info (click to toggle)
php-xml-htmlsax3 3.0.0%2Bcvs01112007-2
  • links: PTS
  • area: main
  • in suites: lenny, squeeze, wheezy
  • size: 160 kB
  • ctags: 327
  • sloc: php: 1,060; xml: 152; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 527 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>This is HTML 4.0</title>
</head>
<body>
<h1 id="title">This page is HTML 4.0</h1>
<p>It contains a number of classic "failings" in terms of well formed XML,
such as<br>
- Tags which aren't closed<br>
- Attributes which have no value<br>
<p>A standard XML parser will complain about but using HTMLSax it can be
converted to XHTML 1.0.
<form>
Do you like XHTML?
<input
    type="checkbox"
    name="likeIt"
    checked>
</form>

</body>
</html>