-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (49 loc) · 1.35 KB
/
index.html
File metadata and controls
53 lines (49 loc) · 1.35 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cartão de Embarque</title>
<link rel="stylesheet" href=".//style.css">
<script src="./script.js"></script>
</head>
<body>
<div class="cartao-embarque">
<!-- Cabeçalho do cartão -->
<header>
<div class="voo-info">
<span>Voo</span>
<strong>7777</strong>
</div>
<div class="local-origem-destino">
<span>São Paulo - Campinas</span>
<span>Lages</span>
</div>
</header>
<!-- Informações principais -->
<section class="info-principal">
<div class="origem">
<h1>VCP</h1>
</div>
<div class="aviao">✈</div>
<div class="destino">
<h1>LAJ</h1>
</div>
</section>
<!-- Detalhes do passageiro e voo -->
<section class="detalhes">
<div><strong>Data:</strong> 31/07/16</div>
<div><strong>Embarque:</strong> 12:45</div>
<div><strong>Cliente:</strong> RENATO RODRIGUES</div>
<div><strong>Terminal:</strong> 2</div>
<div><strong>Portão:</strong> 6</div>
</section>
<section class="qr-code">
<div class="qr-placeholder">
<img src="./assets/qr-code.svg" width="50%">
</div>
<p>EDLDSQ - SEQ#1</p>
</section>
</div>
</body>
</html>