-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 897 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>QR code generator</title>
</head>
<body>
<div id="main">
<div id="container">
<div id="data">
<h1 class="head">Enter your text or URL</h1>
</div>
<div id="input">
<input type="text" name="input for qr code" id="input-data" placeholder="Text or URL">
</div>
<div id="qr">
<img src="" id="QR-img">
</div>
<div id="btn">
<button id="button" onclick="showQR()">Generate QR Code </button>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>