8 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
<html>
<head>
<title>start</title>
<style type="text/css">
@page querformat {size: 29.7cm 21.0 cm}
div.uebersicht { page:querformat; /* andere CSS-Angaben */ }
</style>
<form>
<center><input type="button" value="Stunden Plan drucken" onClick="myprint()"></center>
</form>
<script language="JavaScript">
function myprint() {
if (window.print) {
parent.haupt.focus();
parent.haupt.print();
}
return;
}
</script>
</body>
</html>
8 Einträge, 1 Seite |