-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (90 loc) · 4.15 KB
/
index.html
File metadata and controls
111 lines (90 loc) · 4.15 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<!-- |---------------------------|
| SwiftMan by ARMAN RAHMAN |
|---------------------------| -->
<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">
<title>QR Code Generator</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.png">
<!-- ALL CSS -->
<!-- Jquery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.2.0/css/bootstrap.min.css" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
<!-- sweetalert2 CSS -->
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/11.4.29/sweetalert2.min.css" />
<!-- googlefonts CSS -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<body class="bg-warning bg-gradient overflow-auto">
<div class="row">
<div class="col vh-100 d-flex justify-content-center align-items-center">
<div class="shadow rounded p-5 bg-white">
<h1 class="mb-5 text-center fw-bold">QR Code Generator</h1>
<div class="row">
<div class="col">
<div class="mb-3">
<label for="input_width" class="form-label">Width (px)</label>
<input type="text" class="form-control" id="input_width" placeholder="300 (optional)">
</div>
</div>
<div class="col">
<div class="mb-3">
<label for="input_height" class="form-label">Height (px)</label>
<input type="text" class="form-control" id="input_height" placeholder="300 (optional)">
</div>
</div>
</div>
<div class="mb-3">
<label for="input_text" class="form-label">Input Text</label>
<input type="text" class="form-control" id="input_text" placeholder="Write any Text">
</div>
<div class="d-flex justify-content-center">
<button class="btn btn-success" onclick="submit()">Get QR Code</button>
</div>
</div>
</div>
<div class="col vh-100 d-flex justify-content-center align-items-center bg-white">
<div class="shadow rounded p-3 bg-dark bg-gradient">
<div class="p-2 ">
<div id="qr_output">
<div class="bg-white">
<img src="https://api.qrserver.com/v1/create-qr-code/?data=Made%20By%20Arman%20Rahman&size=300x300" alt="">
</div>
</div>
<h4 class="text-white text-center mt-3">Scan Me</h4>
</div>
</div>
</div>
</div>
<!-- ALL JS -->
<!-- Bootstrap JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.2.0/js/bootstrap.min.js"></script>
<!-- sweetalert2 JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/11.4.29/sweetalert2.all.min.js"></script>
<!-- sweetalert2 Call Function -->
<script>
$('#click').on('click', function () {
// Go to This Lick: https://sweetalert2.github.io/recipe-gallery/
Swal.fire(
'The Internet?',
'That thing is still around?',
'question'
)
})
</script>
<!-- App JS -->
<script src="js/app.js"></script>
</body>
</html>