-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (41 loc) · 2.25 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./assets/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="style.css">
<title>QRator</title>
</head>
<body>
<nav class="bg-white p-3 drop-shadow-xl">
<div class="conontainer flex items-center justify-between md:mx-28">
<div class="p-2"><img src="./assets/Frame 13QR_logo.svg" alt="" srcset=""></div>
<button class="rounded-full bg-black px-5 py-2 text-sm font-light text-white duration-500 hover:bg-slate-800"><a target="_blank" href="https://github.com/codenay">Github</a></button>
</div>
</nav>
<main class=" mt-8 flex h-full items-center justify-center">
<div class="mt-10 flex h-3/6 w-4/5 flex-col items-center justify-center">
<div>
<h1 class="text-3xl md:text-5xl text-center">QRCODE GENERATOR</h1>
</div>
<div class="mt-8 flex min-w-max flex-col p-5">
<p class="text-sm font-light text-slate-500">Paste URL or enter text to generate QR code</p>
<div class="mt-3 flex items-center justify-between">
<input type="text" placeholder="Enter Text" class="input-field w-5/6 rounded-lg border border-solid border-zinc-400 px-4 py-3 text-sm font-light placeholder-gray-400 outline-0" />
<button class="paste ml-3 rounded-lg border border-zinc-400 py-3 px-4 text-sm font-light text-slate-500 duration-500 hover:bg-slate-100"><img src="./assets/Group 1.svg" alt=""></button>
</div>
<button id="generate-btn" class="mt-5 rounded-lg bg-blue-600 py-3 text-white duration-500 hover:bg-blue-700">Generate</button>
</div>
<div class="min-w-max mt-5">
<img class="qr-image w-64 hidden duration-500" src="/QR_code.png" alt="qrcode">
</div>
<button class="download-btn hidden mt-5 ml-3 flex font-normal rounded-lg border border-zinc-400 py-3 px-4 text-sm font-light text-slate-500 duration-500 hover:bg-slate-100 ">Download</button>
<div>
</div>
</div>
</main>
<script type="module" src="/main.js"></script>
</body>
</html>