jb-data.de/druck.php
2025-08-11 22:23:30 +02:00

40 lines
No EOL
440 B
PHP

<!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>