This commit is contained in:
steven 2025-08-11 22:23:30 +02:00
commit 72a26edcff
22092 changed files with 2101903 additions and 0 deletions

40
druck.php Normal file
View file

@ -0,0 +1,40 @@
<!DOCTYPE html>
<html>
<style>
@media screen {
h1 {
text-align: right;
border-bottom: 3px dashed #00f;
color: #008;
background-color: inherit;
}
}
@media print {
h1, ... {
color: #000;
background-color: #fff;
}
}
</style>
<head>
<script>
function myFunction() {
window.print();
}
display: none;
</script>
</head>
<body onload="myFunction()">
<h1>Hello World!</h1>
</body>
</html>