-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 1.58 KB
/
index.html
File metadata and controls
37 lines (36 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>QR Code Generator in JavaScript</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/favicon/site.webmanifest">
</head>
<body>
<div class="logo">
<img src="./logo.svg" alt="3AM Brand Communication Logo">
</div>
<div class="wrapper">
<header>
<h1>QR Code Generator</h1>
<p>Paste a url or enter text to create QR code</p>
<p class="note"><strong>* Note: </strong> Generate QR Code before downloading<strong>*</strong></p>
</header>
<div class="form">
<input type="text" spellcheck="false" placeholder="Enter text or url">
<button>Generate QR Code</button>
<a href="" target="_blank" download="file"><button enabled>Download QR Code</button></a>
<p id="qrDyy">Developed by <span>Jertt | <a href="https://jertt.dev/">jertt.dev</a> </span>for 3AM</p>
</div>
<div class="qr-code">
<img src="" alt="qr-code">
</div>
<p class="qr-code">Developed by <span class="name">Jertt | <a class="link" href="https://jertt.dev/">jertt.dev</a> </span>for 3AM</p>
</div>
<script src="index.js"></script>
</body>
</html>