-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (37 loc) · 1.17 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
54
55
56
57
<!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</title>
<link rel="stylesheet" href="styles.css">
<!-- qrcodejs -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js">
</script>
<script src="index.js" defer></script>
</head>
<body>
<main>
<header>
<nav class="nav">
<div class="img-container small">
<img src="/images/logo-transparent-svg.svg" alt="">
</div>
</nav>
</header>
<div class="main container">
<div class="container top">
<div class="container mid">
<input class="input" type="text" placeholder="Enter your website Link">
<span class="focus"></span>
<button class="button">Create QR Code</button>
</div>
</div>
<div class="container bottom">
<div id="qrcode"></div>
</div>
</div>
</main>
</body>
</html>