-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathventa.html
More file actions
99 lines (85 loc) · 3.04 KB
/
venta.html
File metadata and controls
99 lines (85 loc) · 3.04 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Este es un sitio de producto genial">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/estilos.css">
<link rel="stylesheet" href="css/animations.css">
<link rel="stylesheet" href="css/grid.css">
<title>BRAND📦</title>
</head>
<!-- Cierra head -->
<body>
<nav>
<a href="index.html"><img src="images/logo.png" alt=""></a>
<ul>
<li>
<a href="faqs.html">Faqs</a></li>
<li>
<a href="#">Producto y descripción</a></li>
</ul>
</nav>
<!-- Empiezan Formulario Venta -->
<br>
<br>
<br>
<br>
<br>
<div class="container">
<div class="row">
<div class="col-4">
<div class="modulo_pago">
<div class="modulo_pago_images">
<img src="images/box2.png" alt="">
</div>
<h3>
Producto 1
</h3>
<p>
Miles de productos hay en el mercado, pero nada como una caja con gatitos
</p>
</div>
</div>
<div class="col-8">
<div class="modulo_pago">
<form action="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=VCMJUKGRZ9SH8" method="POST">
<label for="name">Nombre</label>
<br>
<input type="text" placeholder="Nombres" name="first_name" class="data">
<br>
<input type="text" placeholder="Apellidos" name="last_ame" class="data">
<br>
<label for="email">E-mail</label>
<br>
<input type="email" placeholder="" name="email" class="data">
<br>
<label for="tel">Teléfono</label>
<br>
<input type="tel" placeholder="" name="night_phone_a" class="data">
<br>
<input type="submit" class="main_btn" name="submit" Value="Confirmar Pago">
</form>
</div>
</div>
</div>
</div>
<br>
<br>
<br>
<br>
<br>
<!-- Empiezan Formulario beneficios -->
<!-- Inicio de footer -->
<footer>
<div class="option">Términos y condiciones</div>
<div class="option"><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="bfdcd0d1cbdedccbd0ffddcdded1db91dcd0d2">[email protected]</a></div>
</footer>
<!-- Fin de Footer -->
<!-- Script -->
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>
<script src="scripts/script.js"></script>
</body>
<!-- Cierra body -->
</html>
<!-- Cierra html -->