-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (29 loc) · 926 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
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=
, initial-scale=1.0">
<title>QR Code Generator</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="./Assets/icon.png">
</head>
<body>
<div class="container">
<div class="box">
<section class="upper">
<h1>QR Code Generator</h1>
<p>Paste text to create QR Code</p>
</section>
<form id="qrForm">
<input id="qrInputText" type="text" name="qrText" placeholder="Enter Text">
<button type="submit">Generate QR Code</button>
</form>
<section class="qr_container" id="qrContainer">
<img id="qrImage" src="./Assets/qr.webp" alt="QR Code">
</section>
</div>
</div>
<script src="script.js"></script>
</body>
</html>