fix: correct HTML structure by moving <body> tag and removing unnecessary line

This commit is contained in:
vista-man
2025-04-03 13:44:58 +02:00
parent a646eb711e
commit 6b7a14758e

View File

@@ -7,9 +7,10 @@
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<body>
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="#">
@@ -40,9 +41,7 @@
</div>
</div>
</nav>
<body>
<div class="container mt-5">
<h1 class="text-center">Koop je tickets voor Spik en Span!</h1>
<form id="ticketForm" action="process_ticket.php" method="POST" class="mt-4">
@@ -73,6 +72,5 @@
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/qrcode/build/qrcode.min.js"></script>
<script src="script.js"></script>
</html>