-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 800 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 800 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>QR Code Generator Jubair</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="wrapper">
<header>
<h1>Generate QR Code</h1>
<p>Enter text or link to generate a QR code</p>
</header>
<div class="form">
<input type="text" placeholder="Enter text or link">
<button>Generate QR Code</button>
</div>
<div class="qr-code">
<img src="example.png" alt="QR Code">
</div>
<div class="telegram">
<a href="https://t.me/jubairFF" target="_blank">Join Telegram</a>
</div>
</div>
<script src="script.js"></script>
</body>
</html>