-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathqr-code.html
63 lines (54 loc) · 2.01 KB
/
qr-code.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
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=0.70;, maximum-scale=1.0, user-scalable=no">
<meta content="https://kela.pages.dev/img/og.png" property="og:image">
<meta content="QR Code Generator | Ferry Ayunda" property="og:title">
<meta content="https://kela.pages.dev/qr-code" property="og:url">
<meta name="description" content="Ketik teks atau url untuk membuat kode QR.">
<!-- Title of the page -->
<title>QR Code Generator</title>
<link rel="shortcut icon" href="/img/favicon.ico">
<!-- Css -->
<link rel="stylesheet" href="css/default.css">
<!-- Add plugins as you like -->
<link rel="stylesheet" href="css/qr-code.css">
<link rel="stylesheet" href="css/loading.css">
<!-- Fontawesome -->
<script src="https://kit.fontawesome.com/2a19ad17e3.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
</head>
<body>
<!-- Your content here -->
<div id="preloader">
<div id="status"> </div>
</div>
<article>
<h1>QR Code Generator</h1>
<p>1. Ketik teks atau url untuk membuat kode QR.</p>
<p>2. Klik Buat Kode QR</p>
<p>3. Klik QR kode dan tahan dilayar ponselmu untuk 'Unduh' hasil kode QR atau klik kanan untuk komputer.</p>
<p><img src="https://chart.googleapis.com/chart?cht=qr&chl=Ferry+Ayunda&chs=160x160&chld=L|0" class="qr-code"></p>
<p>
<!--
<form>
-->
<fieldset>
<label>Ketik teks atau url untuk membuat kode QR.</label>
<input type="text" id="content" placeholder="Masukkan teks atau url">
</fieldset>
<button type="submit" id="generate">Buat Kode QR</button></p>
<!--
</form>
-->
</article>
<footer>
<p><a target="_blank" rel="noopener" href="https://www.facebook.com/bungferry.wa">Copyright © 2022 Ferry Ayunda.</a></p>
</footer>
<script src="js/qr-code.js"></script>
<script src="js/loading.js"></script>
</body>
</html>