Skip to content

index.html #856

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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>