-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 751 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QR Code Generator and Reader</title>
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/navbar.css">
</head>
<body>
<div class="container">
<div class="bx" id="bx1"><div class="btn" id="btn1">QR Code Generator</div></div>
<div class="bx" id="bx2"><div class="btn" id="btn2">QR Code Reader</div></div>
</div>
<script type="module" src="scripts/animation.js"></script>
<script type="module" src="scripts/main.js"></script>
<script src="scripts/dynamic.js"></script>
</body>
</html>