mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
18 lines
467 B
HTML
18 lines
467 B
HTML
<html>
|
|
<head>
|
|
<title>Printest</title>
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div id="fill-contents">
|
|
<div id="centered-container">
|
|
<div id="centered-contents">
|
|
Numbers from <span id="from"></span> to <span id="to"></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="fill-footer"><button id="print">Print</button></div>
|
|
<iframe name="print" src="printout.html">
|
|
</body>
|
|
</html>
|