forked from codemistic/Web-Development
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqrcode.html
More file actions
34 lines (29 loc) · 703 Bytes
/
qrcode.html
File metadata and controls
34 lines (29 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>QR Code Generator</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="main.css">
<style>
div img {
width: 10%;
}
</style>
<script src="qrcode.js"></script>
</head>
<body>
<header>
<h1>Enter your link</h1>
</header>
<main>
<div id="code"></div>
</main>
<script>
let qrcode = new QRCode("code", {
text: "https://github.com/FelixFelicis555/QR-code-generator",
correctLevel: QRCode.CorrectLevel.H
});
</script>
</body>
</html>