PlandeCulto / index.html
olimpa's picture
Update index.html
a3ff3c9 verified
raw
history blame
2.18 kB
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Plan de adoraci贸n - Iglesia Cristo Vive de Ant贸n</title>
<link rel="shortcut icon" href="https://ia800509.us.archive.org/8/items/tcvl_20231025/TCVL%20%281%29.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="plan-de-culto">
<img src="https://ia800509.us.archive.org/8/items/tcvl_20231025/TCVL%20%281%29.png" alt="Logo Iglesia Cristo Vive de Ant贸n" class="logo">
<h1 class="titulo">Planificacin</h1>
<h2 class="subtitulo">Plan de Culto de la Iglesia Cristo Vive de Ant贸n</h2>
<div class="fecha">
<p>Fecha:</p>
<input type="date" id="fecha-culto">
</div>
<div class="objetivo">
<p>Objetivo:</p>
<textarea id="objetivo-culto" rows="3"></textarea>
</div>
<table class="tabla-actividades">
<thead>
<tr>
<th>Actividad</th>
<th>Tiempo</th>
<th>Responsable</th>
<th>Completado</th>
</tr>
</thead>
<tbody>
<tr>
<td>Oraci贸n</td>
<td contenteditable="true">10:00</td>
<td contenteditable="true">Juan</td>
<td><input type="checkbox"></td>
</tr>
<!-- Repet铆 la fila para simular m煤ltiples actividades -->
</tbody>
</table>
<div class="firma">
<p>Firma del Responsable:</p>
<select id="seleccionar-firma">
<option value="Juan">Juan</option>
<option value="Mar铆a">Mar铆a</option>
<!-- Agrega m谩s opciones seg煤n tus necesidades -->
</select>
</div>
<div class="versiculo">
<p>LO QUE ES, YA HA SIDO, Y LO QUE SER脕, YA FUE, Y DIOS BUSCA LO QUE HA PASADO. </p>
<p>漏 CVM BY JAIRNAY V2 2024</p>
</div>
<div class="pie-de-pagina">
<button id="boton-exportar-pdf">Exportar a PDF</button>
<!-- Agrega el bot贸n imprimir imagen si es necesario -->
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.9.3/html2pdf.bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html>