summaryrefslogtreecommitdiff
path: root/support/html2latex/HTML/t/tags.html
blob: fbc305285fd1eeca92cedc76d2e035c1506789de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<HTML>
<TITLE>Test #1</TITLE>
Table without border
<TABLE>
<TR>
   <TD>Ampersand</TD><TD>&amp;</TD>
</TR>
<TR>
   <TD>Left Angle</TD><TD>&lt;</TD>
</TR>
<TR>
   <TD>Right Angle</TD><TD>&gt;</TD>
</TR>
<TR>
   <TD>Dollar Sign</TD><TD>$$$$</TD>
</TR>
<TR>
   <TD>Forward Slash</TD><TD>/</TD>
</TR>
<TR>
   <TD>Percent</TD><TD>%</TD>
</TR>
<TR>
   <TD>Left Brace</TD><TD>{</TD>
</TR>
<TR>
   <TD>Back Slash</TD><TD>\</TD>
</TR>
<TR>
   <TD>Right Brace</TD><TD>}</TD>
</TR>
<TR>
   <TD>Underscore</TD><TD>_</TD>
</TR>
<TR>
   <TD>Funny</TD><TD>\$</TD>
</TR>
</TABLE>
Nested table with border
<TABLE border="1">
<TR>
   <TD align="left">align left</TD>
   <TD align="right">align right</TD>
</TR>
<TR>
<TD>.......................................</TD>
<TD>.......................................</TD>
</TR>
<TR>
   <TD align="center">align center</TD>
   <TD align="center">
      <TABLE border="2">
      <TR>
         <TD>1</TD>
	 <TD>2</TD>
      </TR>
      <TR>
         <TD>3</TD>
	 <TD>4</TD>
      </TR>
      </TABLE>
   </TD>
</TR>
</TABLE>
<DL>
<DT>Defenition of Recursion
<DD>See Recursion
</DL>
<H1>Header 1</H1>
<H2>Header 2</H2>
<H3>Header 3</H3>
<H4>Header 4</H4>
<H5>Header 5</H5>
<H6>Header 6</H6>

 A small ordered list.
<OL>
<LI> <B>Bold</B>
<LI> <I>Italics</I>
<LI> <STRONG>Strong</STRONG>
<LI> <EM>Emph</EM>
</OL>

 A small unordered list.
<UL>
<LI> !@#$%^&*(){}
<LI>
 Nested list
   <UL>
   <LI> !@#$%^&*(){}
   <LI> bill@bobb.com
   </UL>
</UL>

<EM>This is italisized</EM><BR>
<I>This is italisized</I><BR>
This is not.<BR>
<STRONG>This is bold.</STRONG><BR>
<B>This is bold</B><BR>
This is not.<BR>
<CODE> $words{cow} = "moo"; # this is code</CODE><BR>
This is not.<BR>
<!-- This is a comment at the end of your document -->
<BLOCKQUOTE>This is a block quote</BLOCKQUOTE>
This is not.<BR>
<CENTER>This is centered text</CENTER><BR>
This is not.<BR>
This is not a comment<BR>
<CENTER>
<IMG src="tags.gif" alt="this is an image that works"><BR>
<IMG src="cow.jpg" alt="this is an image that does not work"><BR>
Both the pictures are centered.
</CENTER>
<P>This is a paragraph.<P>This is a new paragraph.<P>This is a new new paragraph.
</HTML>