-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (35 loc) · 1.29 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Certificado de Evento </title>
<style>
body {
background-image: url("Background.jpg");
background-repeat: no-repeat;
background-size: cover;
overflow: auto;
}
</style>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="./ESCUDO-VERDE.png" alt="Logo">
<br>
<h4>Obten aqui tu certificado</h4>
<h1><a href="https://www.facebook.com/FacultadIngenieriaUCundinamarca" target="_blank" rel="noopener noreferrer" style="color: #007b3e;">
Transmision en vivo - Facultad de Ingenieria</a></h1>
</header>
<main>
<label for="name">Ingresa Nombre Completo</label>
<input required placeholder="Nombre Completo" type="text" name="Name" id="name" autocomplete="name" style="text-align: center;">
<button id="submitBtn">Generar certificado</button>
</main>
<script src="https://unpkg.com/[email protected]"></script>
<script src="./FileSaver.js"></script>
<script src="https://unpkg.com/@pdf-lib/[email protected]"></script>
<script src="./index.js"></script>
</body>
</html>