-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (34 loc) · 1.48 KB
/
index.html
File metadata and controls
35 lines (34 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>QR Code Generator | Kavindu Nimsara</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A Website where you can make a QR code from a text or a link">
<meta name="keywords" content="qrcode, qrcodegenerator, kavindu, nimsara, github, qr code generator, open source, free, qr">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.12.1/css/all.css" crossorigin="anonymous">
</head>
<body>
<div class="wrapper">
<header>
<h1>QR CODE GENERATOR</h1>
<p>To Generate a QR Code, Enter Text or Paste a URL</p>
</header>
<div class="form">
<label>
<input type="text" placeholder="Enter The Text or URL Here">
</label>
<button>Generate QR</button>
<button class="github" onclick="window.location.href='https://github.com/itzkavindu/qrcode-generator/';"><i class="fab fa-github"></i> View this Project on Github</button>
</div>
<div class="qr-code">
<img src="" alt="qr-code">
</div>
</div>
<div class="footer">
<p><a href="https://github.com/itzkavindu/qrcode-generator">QR Code Generator</a> by <a href="https://github.com/itzkavindu">Kavindu Nimsara</a> | 2022</p>
</div>
<script src="main.js"></script>
</body>
</html>