forked from brunohasouza/vitrine-literaria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
car.html
116 lines (57 loc) · 1.75 KB
/
car.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
<!DOCTYPE html>
<html>
<head>
<title>Vitrine Literaria</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/car.css">
</head>
<body>
<div id="cabeçalho">
<h1>Vitrine <spam class="branco">Literaria</spam></h1>
<div id="pesquisa">
<form>
<input type="search">
</form>
<a href="anuncio.html">Pesquisar</a>
</div>
<div id="menu">
<a href="user.html">
<img src="imagens/user.png">
<h5>Fazer login</h5>
</a>
<a href="car.html">
<img src="imagens/car.png">
</a>
</div>
</div>
<div class="geral">
<h3> Carrinho (1 ítem)</h3>
<div class="compraNoCarro">
<h2>Sebo Real</h2>
<img src="imagens/capa1.jpg">
<div class="info_produto">
<h1>O pequeno principe</h1>
<p>Antoine de Saint-Exupéry</p>
</div>
<div class="preco_car">
R$25,00
</div>
</div>
<div>
<div class="preco_total">
R$25,00
</div>
<div class="total_text">
Total a pagar:
</div>
</div>
<a href="">Comprar</a>
</div>
<div id="rodape">
<div>
<img src="imagens/leoa.png">
<h5>Todos os direitos reservados</h5>
</div>
</div>
</body>
</html>