-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (72 loc) · 3.21 KB
/
index.html
File metadata and controls
79 lines (72 loc) · 3.21 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ZynQR</title>
<!-- All Style link-->
<link rel="stylesheet" href="css/all.css">
<!-- Styles link -->
<link rel="stylesheet" href="css/style.css">
<!-- Bootstrap Style link -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.4/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="bg-dark">
<!-- Use -->
<div class="use" id="termsModal">
<div class="terms-content">
<div class="d-flex justify-content-between align-items-center mb-3">
<h3>Условия использования</h3>
<select id="languageSelect" class="form-select w-auto">
<option value="ru">🇷🇺 Русский</option>
<option value="en">🇬🇧 English</option>
</select>
</div>
<div id="termsText" class="overflow-auto" style="max-height: 300px;"></div>
<div class="text-end mt-3">
<button id="acceptTerms" class="btn btn-success">Принимаю</button>
</div>
</div>
</div>
<!-- Navbar -->
<div id="navbar" class="position-relative d-flex justify-content-center align-items-center py-5">
<img src="media/Logopit.png" alt="" id="logo">
</div>
<!-- Section -->
<div id="section" class="text-white d-flex flex-column py-4 justify-content-center align-items-center">
<div class="container">
<h1 class="h1 text-center">Free QR-code generation</h1>
<p class="text-center mt-3">ZynQR is a free service that helps you create a QR code</p>
<div id="input" class="d-flex justify-content-center align-items-center gap-1">
<input type="text" class="w-25 py-1 px-2" id="link" placeholder="content">
<button class="bg-success text-white py-1 px-3" id="generate">Submit</button>
</div>
</div>
<div class="choose-color d-flex gap-3 align-items-center mt-4 mb-3">
<div>
<label for="qrColor" class="form-label text-light">Цвет QR</label>
<input type="color" id="qrColor" value="#000000" class="form-control form-control-color">
</div>
<div>
<label for="bgColor" class="form-label text-light">Фон</label>
<input type="color" id="bgColor" value="#ffffff" class="form-control form-control-color">
</div>
</div>
<div id="result" class="text-center mt-4">
<h3 class="h3">Result</h3>
<div id="qr-image" class="mt-3"></div>
</div>
</div>
<!-- Bootstrap Js link -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.4/dist/js/bootstrap.bundle.min.js"></script>
<!-- App js link -->
<script src="js/app.js"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JP8NVH8332');
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JP8NVH8332"></script>
</body>
</html>