-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (43 loc) · 1.48 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
<!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</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
</ul>
</nav>
</header>
<main>
<div class="container" id="home">
<h1>QR Code Generator</h1>
<div class="qr-section">
<div class="input-container">
<h2>Generate QR Code</h2>
<div class="qr-generator">
<input type="text" id="inputLink" placeholder="Enter link or text">
<button class="btn" id="generateQR">Generate QR Code </button>
</div>
</div>
<div class="qr-image-container">
<div id="qrcode"></div>
</div>
</div>
</div>
<div class="about" id="about">
<h2>Roadmap</h2>
<p>Sep 23 - Launched simple QR Code generator</p>
</div>
</main>
<script src="qrcode.min.js"></script>
<script src="script.js"></script>
</body>
</html>