-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (26 loc) · 827 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
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.1/css/bootstrap.min.css"
/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.1/js/bootstrap.min.js"></script>
<title>Qr Menu</title>
</head>
<body>
<!-- Beginning -->
<h1 class="text-center">Menü</h1>
<!-- Buttons -->
<div
id="buttons-area"
class="d-flex justify-content-center gap-1 my-3"
></div>
<!-- Menu Area -->
<div id="menu-area" class="row justify-content-center gap-2 my-3"></div>
<script type="module" src="main.js"></script>
</body>
</html>