<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>QR Code</title>
<style>
@page {
size: 10cm 10cm;
margin: 10mm;
background: black;
}
body {
text-align: center;
color: white;
}
#qr {
display: inline-block;
width: 3cm;
color: dimgrey;
}
</style>
</head>
<body>
<h1>QR Code</h1>
<p>Generating a simple qr-code.</p>
<qr-code id="qr"
icon-src="https://typeset.sh/images/favicon-96x96.png"
icon-size="7"
alt="QRCode to typeset.sh">https://typeset.sh/en/php/extensions/qr-code/</qr-code>
<p>test me</p>
</body>
</html>