-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (64 loc) · 2.11 KB
/
Copy pathindex.html
File metadata and controls
66 lines (64 loc) · 2.11 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>QR Code Generator</title>
<!-- Bootstrap CSS CDN -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"
/>
<!-- FontAwesome CSS CDN -->
<link
rel="stylesheet"
href="https://site-assets.fontawesome.com/releases/v6.4.0/css/all.css"
/>
<!-- Main CSS -->
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<section class="my-5">
<div class="container">
<div class="row">
<div class="col-md-4 offset-md-4">
<div class="card">
<div class="card-header">
<h3 class="card-title text-center">QR Code Generator</h3>
</div>
<div class="card-body">
<form id="qr_form">
<div class="msg"></div>
<div class="mb-3">
<input
type="text"
name="qr_text"
class="form-control"
placeholder="Type your text..."
/>
</div>
<div class="mb-2 text-center">
<button type="submit" class="btn btn-primary">
Generate QR Code
</button>
</div>
</form>
<div class="qr_img_wrap mt-4 text-center border p-3 rounded-1">
<img
src="https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=Example"
alt=""
/>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- bootstrap script -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"></script>
<!-- script -->
<script src="./app/functions.js"></script>
<script src="./app/main.js"></script>
</body>
</html>