-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrear_rotulo.html
120 lines (101 loc) · 3.98 KB
/
crear_rotulo.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
<!DOCTYPE html>
<html lang="es">
<head>
<!-- Meta Tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cotización de Rótulos - Ideas Estudio de Marketing</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Estilos Personalizados -->
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #fbfce2;
color: #333;
padding: 20px;
}
.hero-section {
background-color: #f0c620;
color: rgb(5, 5, 5);
padding: 80px;
text-align: center;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.container h2 {
margin-top: 30px;
font-size: 2rem;
color: #000000;
}
.btn-primary {
background-color: #ecc010;
border: none;
}
.btn-primary:hover {
background-color: #0056b3;
}
.logo {
max-width: 150px;
height: auto;
margin: 0 auto;
display: block;
}
/* Estilos para el círculo que representa el rótulo */
.rotulo-visual {
background-color: white;
border: 2px solid #333;
border-radius: 50%;
width: 150px; /* Ajusta el tamaño del círculo */
height: 150px; /* Ajusta el tamaño del círculo */
margin: 20px auto;
position: relative;
}
.rotulo-container {
display: flex;
flex-direction: column;
align-items: center;
}
</style>
</head>
<body>
<!-- Hero Section -->
<section class="hero-section">
<img src="C:\Users\Andres Garita\OneDrive\Escritorio\Página ideas\imagenes\logo ideas publicidad.png" class="logo" alt="Logo de Ideas Estudio de Marketing">
<p>Por favor, complete el siguiente formulario para solicitar su cotización.</p>
</section>
<!-- Formulario de Cotización -->
<section class="container mt-5">
<h2>¿Cómo te gustaría tu rótulo?</h2>
<form>
<div class="mb-3">
<label for="nombreEmpresa" class="form-label">Nombre de la Empresa</label>
<input type="text" class="form-control" id="nombreEmpresa" required>
</div>
<!-- Círculo que representa el rótulo -->
<div class="rotulo-container">
<div class="rotulo-visual" id="rotuloVisual"></div>
</div>
<!-- Opción para seleccionar 'Fijo' o '360' usando radio buttons -->
<div class="mb-3">
<label class="form-label">Tipo de Rótulo</label>
<div>
<input type="radio" id="tipoFijo" name="tipoRotulo" value="fijo" required>
<label for="tipoFijo">Fijo</label>
<input type="radio" id="tipo360" name="tipoRotulo" value="360" required>
<label for="tipo360">360</label>
</div>
</div>
<div class="mb-3">
<label for="archivoDiseno" class="form-label">Subir Archivo de Diseño (PDF, PNG, JPG)</label>
<input type="file" class="form-control" id="archivoDiseno" accept=".pdf,.png,.jpg" required>
</div>
<button type="submit" class="btn btn-primary">Enviar Cotización</button>
</form>
</section>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>