-
Notifications
You must be signed in to change notification settings - Fork 0
/
(17) Horizontale Linien.html
executable file
·53 lines (36 loc) · 1.26 KB
/
(17) Horizontale Linien.html
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
<html>
<head>
<title>Horizontale Linien</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></meta>
</head>
<body>
<p>
Mit <hr> erstellen Sie eine <b>"horizontal row"</b> - eine horizontale Linie:
</p>
<hr>
<p>
Eine Trennlinie mit dem Attribut <b><i>noshade</i></b>:
</p>
<hr noshade>
<p>
Eine Trennlinie mit <b><i>width="50%"</i></b>:
</p>
<hr width="50%">
<p>
Eine Trennlinie mit <b><i>width="400"</i></b>:
</p>
<hr width="400">
<p>
Eine Trennlinie mit <b><i>size="10"</i></b>:
</p>
<hr size="10">
<p>
Eine Trennlinie mit <b><i>align="left" width="30%"</i></b>:
</p>
<hr align="left" width="30%">
<p>
Eine Trennlinie mit <b><i>color="red"</i></b> (nur IE ab Version 3.0 - kein HTML-Standard!):
</p>
<hr color="red">
</body>
</html>