-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (41 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title> Qukar | QR Code Generator </title>
<link rel="icon" href="Qukar.png">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!-- skull image -->
<div class="skull">
<img src="skull.svg" style="width: 400px; height: 400px;">
</div>
<!-- div for a container -->
<div class="all">
<!-- container to hold all elements like form etc -->
<div class="container">
<!-- txts -->
<header>
<h1 style="font-size: 50px; text-align: center;"> Qukar </h1>
<p style="text-align: center; ">Get your QR Code by pasting the URL</p>
</header>
<!-- form with input and button -->
<div class="form">
<input type="text" placeholder="Provide url">
<button>Generate Your QR Code</button>
</div>
<!-- QR Code generator image space -->
<div class="qr-code">
<img src="" alt="qr-code">
</div>
</div>
</div>
<!-- last sentence with signature -->
<div>
<p class="md">Made with ❤ by <a href="https://www.linkedin.com/in/rakshixh" class="mmd">rakshixh</a></p>
</div>
<script src="script.js"></script>
</body>
</html>