You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.4 KiB
46 lines
1.4 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>QR Generátor</title>
|
|
<link rel="stylesheet" href="css/bootstrap.css">
|
|
<style>
|
|
body {
|
|
background-color: #f9f8fa;
|
|
}
|
|
.card {
|
|
max-width: 400px;
|
|
margin: 50px auto;
|
|
}
|
|
#qrImg {
|
|
max-width: 100%;
|
|
height: auto;
|
|
display: none;
|
|
margin-top: 20px;
|
|
border: 15px solid white;
|
|
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1 class="display-1">QR Generátor</h1>
|
|
<div class="card shadow">
|
|
<div class="card-body text-center">
|
|
<h3 class="card-title mb-4">Karta: QR Generátor</h3>
|
|
<div class="mb-3 text-start">
|
|
<label for="qrText" class="form-label"></label>
|
|
<input type="text" id="qrText" class="form-control" placeholder="URL nebo Text (např. www.google.com)">
|
|
</div>
|
|
<button onclick="generujQR()" class="btn btn-outline-primary w-100">Vytvořit QR Kód</button>
|
|
<div id="result">
|
|
<img src="" alt="QR Kód" id="qrImg">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|