-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (30 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="background-1"></div>
<div class="background-2"></div>
<form>
<div class="input-part">
<h1>QR Code Generator</h1>
<h2>Paste a url or enter text to create QR code</h2>
<input class="user-input" placeholder="Enter text or url" required>
<button class="generate-btn">Generate QR Code</button>
</div>
<div class="spinner-border" role="status">
<span class="sr-only">Loading...</span>
</div>
<div class="qr-code">
<img src="https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=love">
</div>
</form>
</div>
<script src="app.js"></script>
</body>
</html>