-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
134 lines (130 loc) · 3.18 KB
/
test.html
File metadata and controls
134 lines (130 loc) · 3.18 KB
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
124
125
126
127
128
129
130
131
132
133
<html>
<head>
<title>Der Titel</title>
</head>
<body>
<h1>Test dokument H1</h1>
<h2>Test dokument H2</h2>
<h3>Test dokument H3</h3>
<h4>Test dokument H4</h4>
<h5>Test dokument H5</h5>
<h6>Test dokument H6</h6>
<p>Ein Absatz P</p>
<table border="1" width="100%">
<caption><big>Meine Tabelle (caption)</big></caption>
<colgroup>
<col width="3*">
<col width="2*">
</colgroup>
<thead>
<tr>
<th>Tabellen Kopf1</th>
<th>Tabellen Kopf2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Eine Tabellenzelle TABLE->TBODY->TR->TD</td>
<td>Eine Tabellenzelle TABLE->TBODY->TR->TD</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Eine Tabellenzelle TABLE->TFOOT->TR->TD</td>
<td>Eine Tabellenzelle TABLE->TFOOT->TR->TD</td>
</tr>
</tfoot>
</table>
<p>
Verschiedene Inline Elemente:<br>
<a href="#top">Der Anker A</a>
<abbr>Abkürzung ABBR</abbr>
<acronym>Acronym</acronym>
<applet code="HexColor.class" width="640" height="200" alt="Java-Applets mit HTML-Farbwähler">
<param name="TestText" value="SELFHTML">
Ein Applet
</applet>
<b>bold b</b>
<bdo dir="rtl">Schreibrichtung bdo rtl</bdo>
<bdo dir="ltr">Schreibrichtung bdo ltr</bdo>
<big>Großschrift big</big>
<button>Hier ist ein Button</button>
<cite>Zitat cite</cite>
<code>Source Code code</code>
<dfn>Definition dfn</dfn>
<em>Emphasis em</em>
<font size=1>Zeichengröße font 1</font>
<font size=4>Zeichengröße font 4</font>
<font size=7>Zeichengröße font 7</font>
<i>italic i</i>
<kbd>Keyboard</kbd>
<q>quote</q>
<s>strike</s>
<samp>Example</samp>
Normaler Text <small>small</small> <big>big</big>
<sub>sub-data sub</sub>
<sup>super-data sup</sup>
<tt>type writer tt</tt>
<u>underline u</u>
<u>variabler text var <p>test ob dieser Fehler erkannt wird</p></u>
</p>
<address>
Hier ist eine Adresse
</address>
<blockquote>
Ein großes Zitat im Block.
</blockquote>
<div>
Ein DIV-BLOCK
</div>
<dl>
<dt>dl</dt>
<dd><p>Definition List</p></dd>
<dt>dt</dt>
<dd><p>Definition Term</p></dd>
<dt>dd</dt>
<dd><p>Definition</p></dd>
<dt>auto</dt>
<dd><p>Ein Fahrzeug mit 4 Rädern</p></dd>
</dl>
<center>
Ein CENTER-BLOCK
</center>
<form>
<h1>Ein Formular</h1>
<fieldset>
<legend>Die Legende</legend>
<label for="meinText">Das Label</label><input type="text" name="meinText" id="meinText"><br>
<label for="meinTextArea">Das Label den text</label><textarea id="meinTextArea" name="meinTextArea" rows="10" cols="80">hier ist mein
Textbeispiel
</textarea>
</fieldset>
</form>
<h1>Listen</h1>
<dir>
<li>Verzeichnisliste</li>
</dir>
<menu>
<li>menuliste</li>
</menu>
<ol>
<li>numerische Liste</li>
</ol>
<ul>
<li>Bullet Liste</li>
</ul>
<h1>No-tags</h1>
<noframes>
<p>Da sehen Sie nur, wenn keine frames gehen</p>
</noframes>
<noscript>
<p>Da sehen Sie nur, wenn kein script geht</p>
</noscript>
<pre>
hier ist vor formatierter
text, mal sehen wie's ausschaut.
<a href="#top">Darf auch anchors
enthalten</a>
</pre>
</body>
</html>