5 Einträge, 1 Seite |
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
<TMPL_INCLUDE NAME="header.tmpl">
<div id="ico_search">
<img src="images/ico_search.gif" width="73" height="65" border="0" alt="Suchmaske:" />
</div>
<div id="navigation">
<TMPL_INCLUDE NAME="navbar.tmpl">
</div>
<div id="search_template">
<form action="<TMPL_VAR NAME="url">" method="post">
<TMPL_INCLUDE NAME="search.tmpl">
</form>
</div>
<TMPL_IF name="results">
<div id="search_result">
<table summary="Suchergebnisse:">
<TMPL_LOOP name="connection_loop">
<tr class="grey">
<td>
<TMPL_INCLUDE NAME="tbl_connection.tmpl">
</td>
<TMPL_LOOP name="subnet_loop">
<td>
<TMPL_INCLUDE NAME="tbl_subnet.tmpl">
<a href="edt_subnet.pl?eid=<TMPL_VAR name="snid">">[Subnetz bearbeiten]</a>
<hr />
<TMPL_LOOP NAME="component_loop">
<TMPL_INCLUDE NAME="tbl_components.tmpl">
</TMPL_LOOP>
</td>
</TMPL_LOOP>
</tr>
<tr class="dark">
<td><a href="edt_subnet.pl">[Neues Subnetz]</a></td>
</tr>
</TMPL_LOOP>
<tr class="grey">
<td>
<a href="edt_connect.pl">[Neue Anbindung]</a>
</td>
</tr>
</table>
<br />
</div>
</TMPL_IF>
<TMPL_INCLUDE NAME="footer.tmpl">
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
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>div</title>
<meta name="author" content="Ronnie">
<meta name="generator" content="Ulli Meybohms HTML EDITOR">
<style type="text/css">
<!--
h1 { font-size:24pt;
color:P
border-bottom:solid thin black; }
.rleft { width: 180px; float: left; background-color:#FFDDDD; }
.gleft { width: 180px; float: left; background-color:#DDFFDD; }
.bleft { width: 250px; float: left; background-color:#DDDDFF; }
-->
</style>
</head>
<body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">
<h1>Nested DIVs</h1>
<div>
<div class="rleft">
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
</div>
<div class="gleft">
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
</div>
<div class="bleft">
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
</div>
</div>
<br />
<div>
<div class="rleft">
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
</div>
<div class="gleft">
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
</div>
<div class="bleft">
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
</div>
</div>
</body>
</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
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title></title>
<meta name="author" content="Ronnie">
<meta name="generator" content="Ulli Meybohms HTML EDITOR">
<style type="text/css">
<!--
h1 { font-size:24pt;
color:P
border-bottom:solid thin black; }
.red { position: relative; left: 16px; background-color:#FFBBBB; }
.yellow { position: relative; left: 16px; background-color:#FFFFDD; }
.blue { position: relative; left: 16px; background-color:#BBBBFF; }
-->
</style>
</head>
<body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">
<h1>Nested DIVs</h1>
<div class="red">
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
<div class="yellow">
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
<div class="blue">
Franz jagt im total verwahrlosten Taxi quer durch Bayern.
</div>
</div>
</div>
</body>
</html>
5 Einträge, 1 Seite |