Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 17 additions & 16 deletions QR-CODE-Generator/index.html
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>QR Code Generator</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>QR Code Generator</title>
</head>

<body>
<h1>QR CODE GENERATOR</h1>
<div class="main">
<input type="text" name="" id="" class="input" placeholder="Enter text here...">
<button class="btn">Generate</button> <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTgdnbx19IIBKvSAwARaGMfbl06_CnXNcV63g&usqp=CAU" alt="qrcode" class="code">
<p id="note">Made with ♥ by Khushi</p>
</div>
<div id="toast">Successfully Generated!!!</div>
<script src="script.js"></script>
</body>
<h1>QR CODE GENERATOR</h1>
<div class="main">
<input type="text" id="input-text" class="input" placeholder="Enter text here..." required>
<button class="btn" onclick="generateQRCode()">Generate</button>
<div class="code-container">
<img id="qrcode" alt="QR Code" class="code" style="display: none;">
</div>
<p id="note">Create by Deenu</p>
</div>
<div id="toast" class="toast">Successfully Generated!!!</div>

<script src="script.js"></script>
</body>
</html>