-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (36 loc) · 1.3 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!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">
<title>QRcode creator</title>
<link rel="stylesheet" type="text/css" href="../src/styles/index.css">
<link type="image/x-icon" rel="shortcut icon" href="favicon.ico">
</head>
<body>
<!-- nav bar -->
<header>
<nav>
<a class="github-profile-link" href="https://github.com/chebupa">
<img src="../src/assets/img/logos/chebupa_logo_main.png">
<p>Chebupa</p>
</a>
</nav>
</header>
<!-- main -->
<div class="flex-wrapper">
<h1>Enter the link to get the QR code</h1>
<!-- input link -->
<input id="text" type="text" style="width:80%" /><br />
<!-- qr code -->
<div id="qrcode"></div>
</div>
<!-- script connections -->
<script src="../src/assets/libraries/davidshimjs-qrcodejs-04f46c6/qrcode.min.js"></script> <!-- qrcode library -->
<script src="../src/assets/libraries/davidshimjs-qrcodejs-04f46c6/jquery.min.js"></script> <!-- jquery -->
<script src="../src/js/qrcode.js"></script> <!-- main js file -->
<script src="../src/js/themeChange.js"></script> <!-- themeChange js file -->
<script src="../src/js/test.js"></script> <!-- test js file -->
</body>
</html>