35 lines
883 B
HTML
35 lines
883 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>A1</title>
|
|
|
|
<!-- Normalize or reset CSS with your favorite library -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
|
|
|
|
<!-- Load paper.css for happy printing -->
|
|
<link rel="stylesheet" href="./style.css">
|
|
|
|
<!-- Set page size here: A5, A4 or A1 -->
|
|
<!-- Set also "landscape" if you need -->
|
|
<style>@page { size: A1 }</style>
|
|
</head>
|
|
|
|
<!-- Set "A5", "A4" or "A1" for class name -->
|
|
<!-- Set also "landscape" if you need -->
|
|
<body class="A1">
|
|
|
|
<!-- Each sheet element should have the class "sheet" -->
|
|
<!-- "padding-**mm" is optional: you can set 10, 15, 20 or 25 -->
|
|
<section class="sheet" style="margin: 0; box-shadow: unset;">
|
|
|
|
<!-- Write HTML just like a web page -->
|
|
<div>helloworld</div>
|
|
|
|
</section>
|
|
|
|
</body>
|
|
|
|
</html>
|