-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (23 loc) · 893 Bytes
/
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
<!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 | Mohamed Talhaoui</title>
<link rel="stylesheet" href="style.css">
<link href="/Images/qr-code.png" rel="shortcut icon"/>
<link href="/Images/qr-code.png" rel="apple-touch-icon"/>
</head>
<body>
<div class="qr-card">
<h1><span style="color:#AA14F0;">Q</span>R <span style="color:#AA14F0;">C</span>ode <span style="color:#AA14F0;">G</span>enerator</h1>
<input type="text" id="qr-text" placeholder="Enter text or URL">
<div id="qrcode"></div>
</div>
<footer>
<p>© 2024 | Mohamed Talhaoui. All rights reserved.</p>
</footer>
<script src="script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js"></script>
</body>
</html>