-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QR Code Generator & Scanner</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.8/css/line.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<header>
<h2>QR Code Generator & Scanner</h2>
</header>
<div class="content">
<div class="column">
<div class="grid">
<a href="/generator/"><i class="uil uil-qrcode-scan"></i>
<h3>Generator</h3>
</a>
</div>
<div class="grid">
<a href="/scanner/">
<i class="uil uil-capture"></i>
<h3>Scanner</h3>
</a>
</div>
</div>
</div>
<div class="footer">
<h6>Created with ❤️ by <a href="https://amalrajkv.xyz/">amalrxj</a></h6>
</div>
</div>
</body>
</html>