Form.html 3.65 KB
Newer Older
Angel Zarate committed
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
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Curriculum Vitae</title>
    <link rel="stylesheet" href="Estilo.css" />
    <script src="https://html2canvas.hertzen.com/dist/html2canvas.min.js"></script>

    <!-- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
    <script src=“https://unpkg.com/jspdf@latest/dist/jspdf.umd.min.js”></script>-->

    <!-- CSS only -->
    <link
      href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
      rel="stylesheet"
      integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
      crossorigin="anonymous"
    />
  </head>
  <body>
    <div id="miFormulario">
      <div class="imagen">
        <img src="image00001.png" alt="" width="128px" height="124px" />
        <h1 class="nombre">ÁNGEL GÓMEZ</h1>
      </div>
      <h3>Profesionalidad:Front-End</h3>
      <!-- <div class="personal">
      <input type="Datos personales" placeholder="Profesionalidad" />
    </div> -->

      <br />
      <section id="miForm">
        <form>
          <!-- <label for="fname">Nombre</label>
          <input type="text" id="fname" name="fname" placeholder="Nombre" /> -->
          <h3 class="nombre">Nombre: Angel Apellido: Gómez</h3>

          <!-- <label for="fapellido">Apellido</label>
          <input
            type="text"
            id="fapellido"
            name="fapellido"
            placeholder="Apellido" -->

          <div class="N3">
            <br />
            <!-- <label for="fcorreo">Correo: </label> -->
            <h3>correo:gomez@roshka.com</h3>
            <!-- input
            type="email"
            id="fcorreo"
            name="fcorreo"
            placeholder="talentohumano@roshka.com"
          /> -->
          </div>

          <br />
          <h3>Telefono: 097132456 Codigo postal:5467</h3>

          <!-- <label for="ftelefono">Telefono</label>
          <input type="tel" id="ftelefono" name="ftelefono" placeholder="" />

          <label for="fcodigop">Codigo postal</label>
          <input type="tel" id="fcodigop" name="fcodigo" placeholder="" /> -->

          <div class="Resumen">
            <h3>Resumen Profesional</h3>
            <!-- <textarea
            name=""
            id=""
            cols="40"
            rows="10"
            placeholder="Resumen profesional"
          ></textarea> -->
            <h3 class="resumen">
              Me Considero una persona responsable,creativa , con ganas de
              aprender , de trabajar en equipo y aportar los conocimientos
              adquiridos a lo largo de los años , superándome cada día. Mi
              objetivo principal es conocer el Campo del Desarrollo, de modo que
              busco oportunidades que me ayuden de llegar al objetivo y por
              supuesto tratar de alinearme a las expectativas de la Empresa
            </h3>
          </div>
        </form>

        <div class="enviar">
          <button onclick="limpiarFormulario()" value="Limpiar Formulario">
            Enviar
          </button>

          <button onclick=" pdfexport()" value="pdfexport formulario">
            PDF EXPORT
          </button>
        </div>
      </section>
      <script src="FormJS.js"></script>
      <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.5.3/jspdf.debug.js"></script>
      <script>
        const btncompra = document.getElementById("place_order");
        btncompra.disabled = true;
      </script>
    </div>
  </body>
</html>