-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
executable file
·34 lines (27 loc) · 1.88 KB
/
script.js
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
var certificados = [
{ nombre: "Miguel AlejandroCervantes Zea-P60 - FUNDAMENTO-certificate.pdf", descripcion: "certificado de Linux essentials obtenido en el año 2022" },
{ nombre: "Miguel AlejandroCervantes Zea-CCNA RS ESSENTIA-certificate.pdf", descripcion: "certificado de Switching, Routing and Wireless Essentials obtenido en el año 2023" },
{ nombre: "Python_Essentials_1_Badge20230730-28-kwpti5.pdf", descripcion: "certificado de Python Essentials 1 obtenido en el año 2023" },
{ nombre: "Python_Essentials_2_Badge20230731-28-ghjx4s.pdf", descripcion: "certificado de Python Essentials 2 obtenido en el año 2023" },
{ nombre: "JavaScript_Essentials_1_Badge20230807-28-41bn52.pdf", descripcion: "certificado de JavaScript Essentials obtenido en el año 2023" },
{ nombre: "JavaScript_Essentials_2_Badge20240615-7-23egq.pdf", descripcion: "certificado de JavaScript Essentials 2 obtenido en el año 2024" },
{ nombre: "Introduction_to_Cybersecurity_Badge20240912-8-dr3q6j.pdf", descripcion: "certificado de Introducion a la cyberseguridad obtenido en el año 2024" }
];
function mostrarCertificados() {
var divCurriculum = document.getElementById('Curriculum de Miguel Alejandro Cervantes Zea');
for (var i = 0; i < certificados.length; i++) {
var nombre = document.createElement('h2');
nombre.textContent = certificados[i].nombre;
var descripcion = document.createElement('p');
descripcion.textContent = certificados[i].descripcion;
var pdf = document.createElement('embed');
pdf.src = 'PDFs/' + certificados[i].nombre;
pdf.type = 'application/pdf';
pdf.width = '100%';
pdf.height = '600px';
divCurriculum.appendChild(nombre);
divCurriculum.appendChild(descripcion);
divCurriculum.appendChild(pdf);
}
}
mostrarCertificados();