-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
170 lines (152 loc) · 5.71 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="responsividade.css">
<title>Agência de Viagens</title>
</head>
<body>
<header class="cabecalho">
<div class="titulo-logo">
<h2>Viagem Certa</h2>
</div>
<div class="titulo">
<h1>Venha realizar a viagem dos seus sonhos!</h1>
<p class="paragrafo-titulo">Lorem ipsum dolor sit amet consectetur adipisicing elit !</p>
</div>
<div class="menu">
<nav class="menu-cabecalho">
<ul class="lista-cabecalho">
<li class="item-lista" >
<a class="item-link" href="#">Quem Somos</a>
</li>
<li class="item-lista" >
<a class="item-link" href="#">Nossos Serviços</a>
</li>
<li class="item-lista" >
<a class="item-link" href="#">Contato</a>
</li>
</ul>
</nav>
</div>
</header>
<main class="container">
<section class="pacotes">
<div class="titulo-pacotes">
<h2>Pacotes</h2>
<p class="paragrafo-pacotes">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Repellendus, autem?</p>
</div>
<div class="figure">
<div class="imagens">
<figure >
<img src="imagens/burj-al-arab-.jpg" alt="">
<figcaption>Burj-Al-Arab</figcaption>
<span class="span">R$ 10.000</span>
<button class="submit"type="submit">Comprar</button></a>
</figure>
</div>
<div class="imagens">
<figure >
<img src="imagens/cristo-redentor.jpg" alt="">
<figcaption>Rio de Janeiro</figcaption>
<span class="span">R$ 2.000</span>
<button class="submit"type="submit">Comprar</button></a>
</figure>
</div>
<div class="imagens">
<figure >
<img src="imagens/mini-mundo.jpg" alt="">
<figcaption>Gramado</figcaption>
<span class="span">R$ 5.000</span>
<button class="submit"type="submit">Comprar</button></a>
</figure>
</div>
</div>
</section>
<section class="table">
<table class="tabela">
<caption class="descricao">Taxa de Serviços</caption>
<thead>
<tr>
<th >Serviços</th>
<th class="valor" >Valor</th>
</tr>
</thead>
<tbody>
<tr>
<td>Reserva de hotel</td>
<td class="valor">R$ 1.000</td>
</tr>
<tr>
<td>Compra de Passagens</td>
<td class="valor">R$ 1.500</td>
</tr>
<tr>
<td>Aluguel de carro</td>
<td class="valor">R$ 300,00</td>
</tr>
<tr>
<td>Guia Turístico</td>
<td class="valor">R$350,00</td>
</tr>
</tbody>
</table>
</section>
<section class="form">
<form action="">
<fieldset class="formulario">
<legend class="legenda">Dados Pessoais</legend>
<label for="nome">Nome</label>
<input class="input" type="text" name="nome" id=""nome>
<label for="email">Email</label>
<input class="input" type="email" name="email" id="email">
<label for="ida">Data-Ida</label>
<input class="input" type="date" name="ida" id="ida">
<label for="volta">Data-Volta</label>
<input class="input" type="date" name="volta" id="volta">
<label for="pessoa">Quantidade de pessoas</label>
<input class="input" type="number" name="pessoa" id="pessoa">
</fieldset>
<fieldset class="formulario-servicos">
<legend class="servicos">Qual(ais) serviços pretende contratar?</legend>
<label for="reserva">
<input class="checkbox" type="checkbox" name="reserva" id="reserva">Reserva de Hotel
</label>
<label for="passagem">
<input class="checkbox" type="checkbox" name="passagem" id="passagem">Compra de passagem
</label>
<label for="carro">
<input class="checkbox" type="checkbox" name="carro" id="carro">Aluguel de Carro
</label>
<label for="guia">
<input class="checkbox" type="checkbox" name="guia" id="guia">Guia Turístico
</label>
</fieldset>
<fieldset class="formulario-pagamento">
<legend class="formulario-formas-pagamentos">Escolha a forma de pagamento</legend>
<label for="cartaoDebito">
<input class="radio" type="radio" name="pagamentos" id="cartaoDebito" value = "cartão de Debito">Cartão de Débito
</label>
<label for="cartaoCredito">
<input class="radio" type="radio" name="pagamentos" id="cartaoCredito" value=" Cartão de Credito">Cartão de credito
</label>
<label for="pix">
<input class="radio" type="radio" name="pagamentos" id="pix" value="Pix"> Pix
</label>
</fieldset>
<fieldset class="formasPagar">
<legend class="pagamentos">Como deseja pagar</legend>
<select class="opcoes" name="select" id="select">
<option value="">A vista</option>
<option value="">5x sem juro</option>
<option value="" selected>10x com juros</option>
</select>
</fieldset>
</form>
</section>
</main>
</body>
</html>