-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (80 loc) · 2.59 KB
/
index.html
File metadata and controls
88 lines (80 loc) · 2.59 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!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" />
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"
/>
<!-- CSS -->
<link rel="stylesheet" href="style.css" />
<title>QR Code Generator</title>
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="container">
<div class="d-flex justify-content-between w-100">
<h1>
QR-<span class="text-primary">Code</span><span>Generator</span>
</h1>
<a
href="https://github.com/MuawiyahDev/javascript-qr-code-generator"
target="_blank"
class="primary-btn"
>GitHub</a
>
</div>
</div>
</nav>
<!-- Main -->
<main>
<div class="container">
<div class="row">
<div class="col-lg-6 left">
<div class="content">
<h1>Generate QR Code for free</h1>
<p>Generate your text, links, addess and much more</p>
</div>
<form id="form">
<div class="mb-3">
<label for="size" class="label">Size</label>
<select class="input" id="sizes" required></select>
</div>
<div class="mb-3">
<label for="text" class="label">Text</label>
<textarea id="text" class="input" required></textarea>
</div>
<button class="primary-btn w-100">Generate</button>
</form>
</div>
<div class="col-lg-6 right" id="right">
<img src="" alt="" id="code" />
<button type="button" class="primary-btn w-100" id="download">
Download
</button>
</div>
</div>
</div>
</main>
<footer>
<div class="container">
<p>
Coded and maintained with ❤️ by
<a href="https://github.com/MuawiyahDev" target="_blank">Muawiyah</a>
©
<script>
document.write(new Date().getFullYear());
</script>
</p>
</div>
</footer>
<!-- Bootstrap JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
<!-- App.js -->
<script src="app.js"></script>
</body>
</html>