Skip to content

Commit 7750b45

Browse files
committed
added min.html
1 parent 0dd901f commit 7750b45

File tree

1 file changed

+67
-80
lines changed

1 file changed

+67
-80
lines changed

min.html

Lines changed: 67 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -1,82 +1,69 @@
1-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3-
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
42
<html xmlns="http://www.w3.org/1999/xhtml">
5-
6-
<head>
7-
<title>Title of document</title>
8-
</head>
9-
10-
<body>
11-
<A>text</A>
12-
<B>text</B>
13-
<BIG>text</BIG>
14-
<BLOCKQUOTE>text</BLOCKQUOTE>
15-
16-
<BR>
17-
<CENTER>text</CENTER>
18-
<DEL>text</DEL>
19-
<DIV>text</DIV>
20-
<dl>
21-
<dt>Flash template</dt>
22-
<dd>The templates developed in Flash</dd>
23-
<dt>HTML template</dt>
24-
<dd>The template developed in HTML</dd>
25-
</dl>
26-
<EM>text</EM>
27-
<FONT>text</FONT>
28-
29-
<H1>text</H1>
30-
<H2>text</H2>
31-
<H3>text</H3>
32-
<H4>text</H4>
33-
<H5>text</H5>
34-
<H6>text</H6>
35-
<HR>
36-
<I>text</I>
37-
<IMG>
38-
<INS>text</INS>
39-
<LI>text</LI>
40-
<OL>
41-
<LI>text</LI>
42-
</OL>
43-
<P>text</P>
44-
<PRE>text</PRE>
45-
<S>text</S>
46-
<SMALL>text</SMALL>
47-
<SPAN>text</SPAN>
48-
<STRONG>text</STRONG>
49-
<SUB>text</SUB>
50-
<SUP>text</SUP>
51-
<TABLE>
52-
<TR>
53-
<TH>text</TH>
54-
<TD>text</TD>
55-
</TR>
56-
</TABLE>
57-
<TT>text</TT>
58-
<U>text</U>
59-
<UL>
60-
<LI>text</LI>
61-
</UL>
62-
63-
<select>
64-
<option value="aust">Australia</option>
65-
<option value="uk">UK</option>
66-
<option value="france">France</option>
67-
<option value="poland">Poland</option>
68-
</select>
69-
70-
<form>
71-
First name:
72-
<input type="text" name="firstname" />
73-
<br />
74-
Last name:
75-
<input type="text" name="lastname" />
76-
</form>
77-
78-
<textarea rows="4" cols="40">Please enter your comments, we will be glad to hear your feedback.</textarea>
79-
80-
</body>
81-
3+
<head>
4+
<title>text</title>
5+
<style></style>
6+
</head>
7+
<body>
8+
<a>text</a>
9+
<b>text</b>
10+
<big>text</big>
11+
<blockquote>text</blockquote>
12+
<br>
13+
<center>text</center>
14+
<del>text</del>
15+
<div>text</div>
16+
<dl>
17+
<dt>text</dt>
18+
<dd>text</dd>
19+
</dl>
20+
<em>text</em>
21+
<font>text</font>
22+
<h1>text</h1>
23+
<h2>text</h2>
24+
<h3>text</h3>
25+
<h4>text</h4>
26+
<h5>text</h5>
27+
<h6>text</h6>
28+
<hr>
29+
<i>text</i>
30+
<img>
31+
<ins>text</ins>
32+
<li>text</li>
33+
<ol>
34+
<li>text</li>
35+
</ol>
36+
<p>text</p>
37+
<pre>text</pre>
38+
<s>text</s>
39+
<small>text</small>
40+
<span>text</span>
41+
<strong>text</strong>
42+
<sub>text</sub>
43+
<sup>text</sup>
44+
<table>
45+
<tbody><tr>
46+
<th>text</th>
47+
<td>text</td>
48+
</tr>
49+
</tbody></table>
50+
<tt>text</tt>
51+
<u>text</u>
52+
<ul>
53+
<li>text</li>
54+
</ul>
55+
<select>
56+
<option value="text">text</option>
57+
</select>
58+
<form>
59+
<label>text<input type="text" name="text"></label><br>
60+
<label for="text">text</label><input type="text" id="text"><br>
61+
<label for="male">Male</label>
62+
<input type="radio" name="gender" id="male" value="male"><br>
63+
<label for="female">Female</label>
64+
<input type="radio" name="gender" id="female" value="female"><br>
65+
<input type="submit" value="Submit">
66+
</form>
67+
<textarea>text</textarea>
68+
</body>
8269
</html>

0 commit comments

Comments
 (0)