-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservicos.html
142 lines (132 loc) · 4.94 KB
/
servicos.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
<!DOCTYPE html>
<html lang="pt-br">
<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">
<title>Serviços - ARENQUEARTS</title>
<link rel="stylesheet" href="estiloservico.css ">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bakbak+One&family=Roboto:ital,wght@0,300;1,100&display=swap" rel="stylesheet">
</head>
<body>
<div id="menu">
<img src="imagens/arenquepng.png" alt="">
<h1>ARENQUE_ARTS</h1>
<a href="index.html">HOME</a>
<a href="servicos.html">SERVIÇOS</a>
<a href="formulario.html">FAÇA SEU PEDIDO!</a>
</div>
<div id="produtos">
<div class="quadros">
<img src="imagens/pressmachine.jpg" alt="">
<h2>Camisas Personalizadas</h2>
<p>Camisas personalizadas de qualidade, com os melhores preços do mercado. A partir de 30 unidades a Arte é inclusa.</p>
<table>
<tr>
<th>CAMISAS</th>
<th>QUANTIDADE</th>
<th>PREÇO</th>
</tr>
<tr>
<td>Algodão</td>
<td>15 PEÇAS</td>
<td>R$350,00 + R$80,00(arte)</td>
</tr>
<tr>
<td>Algodão</td>
<td>15 PEÇAS</td>
<td>R$350,00(Arte Inclusa)</td>
</tr>
</table>
</div>
<div class="quadros">
<img src="imagens/adesivospersonalizados.jpg" alt="">
<h2>Adesivos Personalizados</h2>
<p>Adesivos personalizados de qualidade, com os melhores preços do mercado. A partir de 100 unidades a Arte é inclusa.</p>
<table>
<tr>
<th>ADESIVOS</th>
<th>QUANTIDADE</th>
<th>PREÇO</th>
</tr>
<tr>
<td>30 x 50</td>
<td>50</td>
<td>R$60,00 + R$30,00(arte)</td>
</tr>
<tr>
<td>30 x 50</td>
<td>100</td>
<td>R$100,00(Arte Inclusa)</td>
</tr>
</table>
</div>
<div class="quadros">
<img src="imagens/banner.jpg" alt="">
<h2>Banner Personalizado</h2>
<p>Banner de qualidade, com os melhores preços do mercado. Arte é inclusa.</p>
<table>
<tr>
<th>Banner</th>
<th>QUANTIDADE</th>
<th>PREÇO</th>
</tr>
<tr>
<td>4 metros</td>
<td>1</td>
<td>R$350,00</td>
</tr>
<tr>
<td>4 metros</td>
<td>2</td>
<td>R$600,00</td>
</tr>
</table>
</div>
<div class="quadros">
<img src="imagens/windbanner.jpg" alt="">
<h2>Wind Banner</h2>
<p>Wind Banner Personalizado, com os melhores preços do mercado. Arte é inclusa.</p>
<table>
<tr>
<th>Wind Banner</th>
<th>QUANTIDADE</th>
<th>PREÇO</th>
</tr>
<tr>
<td>4 metros</td>
<td>1</td>
<td>R$350,00</td>
</tr>
<tr>
<td>4 metros</td>
<td>2</td>
<td>R$600,00</td>
</tr>
</table>
</div>
</div>
<div id = "area" >
<img src="imagens/gift.png" alt="">
</div>
<script>
var a = window.document.getElementById('area')
a.addEventListener('click' , clicar)
function clicar() {
a.innerText = 'Ganhou!';
window.alert("Feliz Natal = Digite 'Presente20' no pedido e ganhe R$20,00 de desconto!")
}
</script>
<footer>
<a href=""><img src="imagens/whatsspng.png" alt=""> 4899999-9999</a>
<a href=""><img src="imagens/facepng.png" alt=""> Arenque_Arts</a>
<a href=""><img src="imagens/instagrampng.png" alt=""> ArenqueArts</a>
<a href=""><img src="imagens/e-mailpng.png" alt=""> design@arenquearts.com.br</a>
</footer>
<div id="autoral">
<p>Copyright © 2021 ARENQUE / Victor Lira - Todos os direitos reservados</p>
</div>
</body>
</html>