-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (45 loc) · 2.59 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<title>QR Code Generator | Digital Partner</title>
<meta charset="utf-8" />
<meta name="description" content="Looking for a QR Code Generator to Generate you text, URL or links into QR Code?" />
<meta name="keywords"
content="QR Code, Generator, digital Partner, QR code Generator, web developer in sri lanka, technical support, uiux, graphic designing, automation, local business, tech solution" />
<meta name="author" content="mmsalmanfaris" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="./qr-code-generator-favicon.png" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="qr-code-generator.css" />
</head>
<body>
<div class="container wrapper">
<div class="d-flex justify-content-center align-items-center vh-100">
<div class="d-flex bg-white p-5">
<div class="me-3">
<div>
<h2>QR Code Generator</h2>
<p>Paste your URL or enter text to create QR code</p>
</div>
<form action="" class="form mt-3">
<input type="text" class="input w-100 form-control form-control mb-4" placeholder="Enter text or URL" />
<button class="btn btn-primary w-100">Generate QR Code</button>
<button type="button" class="btn btn-outline-primary mt-4 w-100 downloadBtn" style="display: none;">
Download QR Code <i class="bi bi-download ms-2"></i>
</button>
</form>
</div>
<div class="p-3 border qr-code text-center">
<img src="" alt="qr-code" id="qrCodeImg" />
</div>
</div>
</div>
</div>
<script src="qr-code-generator.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>