First template
All layout configurations are done using CSS.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My first template</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@page {
size: A5;
margin: 10mm;
}
</style>
</head>
<body>
Hello World
</body>
</html>Last updated