style: enhance readability through code formatting
Improved HTML indentation to enhance the readability and maintainability of the code. Consistently formatted self-closing tags for better HTML5 compliance. This change ensures a cleaner and more developer-friendly structure, facilitating easier future edits and collaboration.
This commit is contained in:
parent
f80f98d191
commit
0480c75ae3
1 changed files with 43 additions and 25 deletions
40
index.html
40
index.html
|
@ -1,15 +1,18 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>QRMaker</title>
|
<title>QRMaker</title>
|
||||||
<!-- Bootstrap CSS -->
|
<!-- Bootstrap CSS -->
|
||||||
<link href="https://nobsdelivr.private.coffee/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
<link
|
||||||
|
href="https://nobsdelivr.private.coffee/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
<!-- Custom CSS -->
|
<!-- Custom CSS -->
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
|
@ -17,7 +20,12 @@
|
||||||
<h1 class="text-center">QRMaker</h1>
|
<h1 class="text-center">QRMaker</h1>
|
||||||
<div class="form-group textarea-container">
|
<div class="form-group textarea-container">
|
||||||
<label for="text-input">Enter text to generate QR code:</label>
|
<label for="text-input">Enter text to generate QR code:</label>
|
||||||
<textarea class="form-control" id="text-input" rows="5" placeholder="Type something..."></textarea>
|
<textarea
|
||||||
|
class="form-control"
|
||||||
|
id="text-input"
|
||||||
|
rows="5"
|
||||||
|
placeholder="Type something..."
|
||||||
|
></textarea>
|
||||||
</div>
|
</div>
|
||||||
<div class="qr-code-container">
|
<div class="qr-code-container">
|
||||||
<div id="qrcode"></div>
|
<div id="qrcode"></div>
|
||||||
|
@ -29,8 +37,18 @@
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<p>Brought to you by <a href="https://private.coffee" target="_blank">Private.coffee</a></p>
|
<p>
|
||||||
<p>Source code available on <a href="https://git.private.coffee/PrivateCoffee/QRMaker" target="_blank">Private.coffee Git</a></p>
|
Brought to you by
|
||||||
|
<a href="https://private.coffee" target="_blank">Private.coffee</a>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Source code available on
|
||||||
|
<a
|
||||||
|
href="https://git.private.coffee/PrivateCoffee/QRMaker"
|
||||||
|
target="_blank"
|
||||||
|
>Private.coffee Git</a
|
||||||
|
>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
@ -42,5 +60,5 @@
|
||||||
<script src="https://nobsdelivr.private.coffee/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js"></script>
|
<script src="https://nobsdelivr.private.coffee/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js"></script>
|
||||||
<!-- Custom JS -->
|
<!-- Custom JS -->
|
||||||
<script src="script.js"></script>
|
<script src="script.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue