From 27627b0fd1deb777e287dd729902d9788540b6b2 Mon Sep 17 00:00:00 2001 From: Josebaezx Date: Sun, 8 May 2022 20:25:37 -0400 Subject: [PATCH] Initial commit --- images/702.jpg | Bin 0 -> 1377175 bytes images/foto-cv.jpg | Bin 0 -> 60841 bytes index.html | 85 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ logica.js | 31 +++++++++++++++++++++++++++++++ style.css | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 189 insertions(+) create mode 100644 images/702.jpg create mode 100644 images/foto-cv.jpg create mode 100644 index.html create mode 100644 logica.js create mode 100644 style.css diff --git a/images/702.jpg b/images/702.jpg new file mode 100644 index 0000000..23b97be Binary files /dev/null and b/images/702.jpg differ diff --git a/images/foto-cv.jpg b/images/foto-cv.jpg new file mode 100644 index 0000000..7bd25d5 Binary files /dev/null and b/images/foto-cv.jpg differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..29e64c6 --- /dev/null +++ b/index.html @@ -0,0 +1,85 @@ + + + + + + + + Document + + + + + + + +
+
+
+ +
+
+

PROGRAMADOR JAVA WEB

+

Estudiante de Ing. en Sistemas, aprendí a desarrollar habilidades
+ en programación en JAVA, PostgreSQL, SPRING BOOT, ANGULAR,
+ JAVASCRIPT estudiando de forma autodidacta, sigo en constante
+ aprendizaje para mejorar mis habilidades

+
+
+ +
+
+
+

Contacto

+
+
+ + +
+
+ + + + + + + + + + \ No newline at end of file diff --git a/logica.js b/logica.js new file mode 100644 index 0000000..a3611ae --- /dev/null +++ b/logica.js @@ -0,0 +1,31 @@ +function generarPDF() { + var a = document.getElementById('1').innerText, + b = document.getElementById('2').innerText, + c = document.getElementById('3').innerText, + d = document.getElementById('4').innerText, + e = document.getElementById('5').innerText, + f = document.getElementById('6').innerText, + g = document.getElementById('7').innerText + var doc = new jsPDF(); + + doc.text(12,12, '\n\t\t\t\t\t'+ a +'\n\n'+ b +'\n\n\t\t\t\t' + c +'\n\n\t\t\t\t'+ + d +'\n\n'+ e +'\n\n\t\t\t\t' + f +'\n\n'+ g); + //doc.addPage(); + doc.save('curriculum.pdf'); + +} + +document.getElementById("nav1").addEventListener("click", myFunction); +document.getElementById("nav2").addEventListener("click", myFunction); +document.getElementById("nav3").addEventListener("click", myFunction); +document.getElementById("nav4").addEventListener("click", myFunction); + +function myFunction() { + alert('Pagina en construcción') +} + + +function enviado(){ + alert('Enviado correctamente!') + window.location.reload(); +} \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..c4b7e09 --- /dev/null +++ b/style.css @@ -0,0 +1,73 @@ +html{ + font-family: Tahoma, Verdana, sans-serif; +} + +.ancla-nav{ + display: inline-block; + background-color: rgb(24, 149, 233); + color: #fff; + padding: 10px 30px; + text-decoration: none; + border-radius: 8px; + margin-left: 12.5%; +} + +.ancla-nav:hover{ + background-color: rgb(13, 74, 114); +} + +.nav { + background-color: rgba(184, 192, 197, 0.247); + padding: 10px; + border-radius: 8px; + width: 70%; + margin: 0 auto; +} + +.imagencv{ + margin-left: 150px; + width: 250px; + height: 550px; +} + +.contenidocv{ + margin-left: 10px; + width: 700px; + height: 550px; +} + +.cv{ + background-image: url('images/702.jpg'); + width: 71%; + height: 620px; + margin: 0 auto; +} + +img{ + width: 200px; + display: block; + margin: 0px auto; +} + +.resumencv h2, #resumenfoto{ + text-align: center; +} + +.cv{ + display: flex; +} + +.formcontacto { + margin-left: 1235px; + width: 400px; + height: 200px; +} + +button{ + color: white; + cursor: pointer; + background-color: rgb(24, 149, 233); + height: 30px; + border-radius: 8px; + +} \ No newline at end of file -- libgit2 0.26.0