...
 
Commits (11)
......@@ -2,5 +2,6 @@
<project version="4">
<component name="Encoding">
<file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/src/main/resources" charset="UTF-8" />
</component>
</project>
\ No newline at end of file
......@@ -2,12 +2,12 @@ package com.roshka.proyectofinal;
import java.io.*;
import java.util.*;
import javax.servlet.*;
import javax.servlet.http.*;
import jakarta.servlet.*;
import jakarta.servlet.http.*;
public class ProtectedResource extends HttpServlet {
public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
res.setContentType("text/plain");
PrintWriter out = res.getWriter();
......
package com.roshka.proyectofinal.entity;
public class LoginBean {
private String username;
private String password;
public String getUsername() {
return username;
}
public String getPassword() {
return password;
}
public void setUsername(String username) {
this.username = username;
}
public void setPassword(String password) {
this.password = password;
}
}
package com.roshka.proyectofinal.login;
import com.roshka.proyectofinal.DataBase;
import com.roshka.proyectofinal.entity.Lenguaje;
import com.roshka.proyectofinal.entity.LoginBean;
import java.sql.Connection;
import java.sql.PreparedStatement;
public class LoginDao {
public boolean validate (LoginBean loginBean) {
int status = 0;
try {
Connection con = DataBase.getConnection();
PreparedStatement ps=con.prepareStatement(
"select * from usuarios where username=? and password = ?");
ps.setString(1,loginBean.getUsername());
ps.setString(2, loginBean.getPassword());
status=ps.executeUpdate();
con.close();
} catch (Exception ex) {
ex.printStackTrace();
}
if (status > 0) return true ;
else return false ;
}
}
package com.roshka.proyectofinal.login;
import java.io.IOException;
import jakarta.servlet.ServletException;
import jakarta.servlet.annotation.WebServlet;
import jakarta.servlet.http.HttpServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import com.roshka.proyectofinal.entity.LoginBean;
/**
* Servlet implementation class LoginServlet
*/
@WebServlet("/login")
public class LoginServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
/**
* @see HttpServlet#HttpServlet()
*/
public LoginServlet() {
super();
// TODO Auto-generated constructor stub
}
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
response.getWriter().append("Served at: ").append(request.getContextPath());
}
/**
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
LoginDao loginDao = new LoginDao();
String username = request.getParameter("username");
String password = request.getParameter("password");
LoginBean loginBean = new LoginBean();
loginBean.setUsername(username);
loginBean.setPassword(password);
if (loginDao.validate(loginBean))
{
response.sendRedirect("loginSuccess.jsp");
}
else {
//HttpSession session = request.getSession();
response.sendRedirect("login.jsp");
}
}
}
\ No newline at end of file
......@@ -5,6 +5,9 @@ img.logoi{
img{
width: 400px;
padding: 10px;
display: block;
padding:10px ;
}
.header {
margin-bottom: 0;
......@@ -12,15 +15,21 @@ img{
}
a{
float: right 100px;
color: #fff;
font-size: larger;
text-decoration: none;
padding: 10px;
}
body {
background: linear-gradient(45deg, rgba(20, 99, 155, 0.25), rgba(30, 148, 227, 0.25));
background-image: url(/project-roshka/imagenes/descarga.svg);
background-size: cover;
background: linear-gradient(100deg, rgba(20, 99, 155, 0.25), rgba(30, 148, 227, 0.25));
background-image: url(webapp/imagenes/descarga.svg);
background-size: contain;
background-attachment: fixed;
background-blend-mode: multiply;
font-family: "normal";
font-family: Georgia, 'Times New Roman', Times, serif;
color: white;
position: relative;
width: 100px;
......@@ -59,11 +68,18 @@ body {
div.menu{
float: right;
}
html, body {
margin:0;
padding:0;
height:100%;
}
.menu ul li a {
padding-left: 5px;
text-decoration: none;
font-size: clamp(14px, 20px, 1.2vw);
font-size: clamp(145px);
text-transform: uppercase;
display: block;
position: relative;
......@@ -77,15 +93,16 @@ body {
height: auto;
}
.seccion.hero {
padding-bottom: 20px;
width: 1098px;
margin-top: 10px;
padding-bottom: 10px;
width: 900px;
}
.hero {
perspective: 150px;
perspective: 100px;
}
.hero {
display: grid;
grid-template-columns: auto repeat(10, 1fr) auto;
grid-template-columns: auto repeat(5, 0.5fr) auto;
}
.hero {
display: flex;
......@@ -95,8 +112,35 @@ body {
/* padding-right: 200px;
*/
}
/* */
.postulacion{
border-radius: 30px;
color: blue;
}
.cta-main{
width: 200px;
font-family: monospace;
background-color: yellow;
border: none;
}
/* Contenido pie de pagina */
/* usamos media quiere para el responsive */
/* @media (min-width: 768px)
.footer {
display: grid;
grid-template-rows: auto auto;
align-items: flex-start;
gap: 0;
padding: 80px 20px
} */
.footer{
margin-top: 10px;
padding-bottom: 10px;
height:100px;
width: 100px;
display: grid;
}
.menu-footer a{
text-decoration: none;
float: right;
}
\ No newline at end of file
......@@ -40,7 +40,7 @@
<!-- Si no lo marca el valor que envia es null y si lo marca es "ON" -->
<input id="experiencia_laboral" name="experiencia_laboral" type="checkbox"><br>
<label for="experiencia_programando">Que lenguajes de programacion conoces:</label>
<label for="experiencia_programando">Lenguajes de programacion que conoces</label>
<input id="experiencia_programando" type="checkbox"><br>
<label for="notebook">Cuenta con notebook:</label>
......
<svg xmlns="http://www.w3.org/2000/svg" width="70" height="42" viewBox="0 0 70 42">
<path fill="#FFF" d="M54.407767,0 L5.24271845,0 C2.34605825,0 0,2.36062136 0,5.24271845 L0,36.6990291 C0,39.5982524 2.36330097,41.9417476 5.24271845,41.9417476 L54.407767,41.9417476 C57.2801942,41.9417476 59.6504854,39.6081553 59.6504854,36.6990291 L59.6504854,5.24271845 C59.6504854,2.36574757 57.3137476,0 54.407767,0 Z M53.6735534,3.49514563 C52.6024078,4.56058252 34.1688932,22.8970485 33.5324272,23.5301359 C32.5421359,24.5204272 31.2256311,25.0656699 29.8252427,25.0656699 C28.4248544,25.0656699 27.1083495,24.5203107 26.1147961,23.5268738 C25.6867573,23.1010485 7.45666019,4.96706796 5.97693204,3.49514563 L53.6735534,3.49514563 Z M3.49514563,35.9876505 L3.49514563,5.95631068 L18.5986019,20.9801942 L3.49514563,35.9876505 Z M5.97914563,38.4466019 L21.0766602,23.4450874 L23.6466408,26.0015534 C25.2970485,27.6519612 27.491301,28.5608155 29.8252427,28.5608155 C32.1591845,28.5608155 34.3534369,27.6519612 36.0005825,26.0048155 L38.5738252,23.4450874 L53.6713398,38.4466019 L5.97914563,38.4466019 Z M56.1553398,35.9876505 L41.0518835,20.9801942 L56.1553398,5.95631068 L56.1553398,35.9876505 Z" transform="translate(5)"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="70" height="70" viewBox="0 0 70 70">
<g fill="#FFF" transform="translate(9 5)">
<path d="M36.1719612,39.4118447 C42.5194951,29.4514951 41.7215534,30.6941359 41.904466,30.4344466 C44.2154563,27.1748738 45.4368932,23.3384854 45.4368932,19.3398058 C45.4368932,8.73553398 36.8317282,0 26.2135922,0 C15.6300583,0 6.99029126,8.71829126 6.99029126,19.3398058 C6.99029126,23.3359223 8.23735922,27.2727379 10.6240777,30.576233 L16.2549903,39.4119612 C10.2346019,40.3371262 0,43.0942136 0,49.1650485 C0,51.3780583 1.44442718,54.5318447 8.3256699,56.9893981 C13.1305631,58.7053981 19.4832233,59.6504854 26.2135922,59.6504854 C38.7990291,59.6504854 52.4271845,56.1003495 52.4271845,49.1650485 C52.4271845,43.093165 42.2045825,40.3389903 36.1719612,39.4118447 Z M13.5435728,28.6537864 C13.5243495,28.6237282 13.5043107,28.5943689 13.4833398,28.5654757 C11.4972816,25.8332039 10.4854369,22.595068 10.4854369,19.3398058 C10.4854369,10.5998447 17.5230291,3.49514563 26.2135922,3.49514563 C34.8860971,3.49514563 41.9417476,10.6029903 41.9417476,19.3398058 C41.9417476,22.6003107 40.9490097,25.7285825 39.0703689,28.3888544 C38.9020194,28.6109126 39.7803495,27.2464078 26.2135922,48.5346408 L13.5435728,28.6537864 Z M26.2135922,56.1553398 C12.4667184,56.1553398 3.49514563,52.1146019 3.49514563,49.1650485 C3.49514563,47.1826019 8.10500971,43.9229126 18.3201553,42.6523107 L24.7398058,52.7256699 C25.0606602,53.2292039 25.6163883,53.5339806 26.2134757,53.5339806 C26.8105631,53.5339806 27.3664078,53.2290874 27.6871456,52.7256699 L34.1066796,42.6523107 C44.3220583,43.9229126 48.9320388,47.1826019 48.9320388,49.1650485 C48.9320388,52.0895534 40.0412039,56.1553398 26.2135922,56.1553398 Z"/>
<path d="M26.2135922,10.6019417 C21.395534,10.6019417 17.4757282,14.5217476 17.4757282,19.3398058 C17.4757282,24.1578641 21.395534,28.0776699 26.2135922,28.0776699 C31.0316505,28.0776699 34.9514563,24.1578641 34.9514563,19.3398058 C34.9514563,14.5217476 31.0316505,10.6019417 26.2135922,10.6019417 Z M26.2135922,24.5825243 C23.3227573,24.5825243 20.9708738,22.2306408 20.9708738,19.3398058 C20.9708738,16.4489709 23.3227573,14.0970874 26.2135922,14.0970874 C29.1044272,14.0970874 31.4563107,16.4489709 31.4563107,19.3398058 C31.4563107,22.2306408 29.1044272,24.5825243 26.2135922,24.5825243 Z"/>
</g>
</svg>
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 221.719 221.719" style="enable-background:new 0 0 221.719 221.719;" xml:space="preserve">
<path fill="#ffffff" d="M180.135,172.169l-4.624-7.721C167.195,150.737,155.718,135,140.664,135c-2.789,0-5.551,0.561-8.285,1.697l-8.08,3.465
c-0.738,0.306-1.455,0.654-2.214,1.023c-2.068,1.006-4.413,2.145-6.825,2.145c-5.95,0-12.844-7.743-19.409-21.802
c-6.443-13.799-6.032-21.033-4.553-24.673c1.632-4.016,5.427-5.733,9.504-7.276c0.567-0.215,1.079-0.41,1.577-0.615l8.182-3.445
c21.316-8.914,13.386-40.065,10.786-50.278l-2.205-8.781C117.257,19.223,112.259,0,95.681,0c-3.069,0-6.343,0.715-9.728,2.126
c-2.221,0.882-32.785,13.358-43.858,35.276c-13.234,26.089-10.787,61.074,7.266,103.961c17.918,42.941,41.153,69.206,69.06,78.064
c4.787,1.521,10.197,2.291,16.081,2.291c0,0,0.002,0,0.003,0c19.259,0,38.27-8.194,39.813-8.874
c6.64-2.813,10.932-7.088,12.756-12.707C190.166,190.608,184.979,180.168,180.135,172.169z M172.805,195.507
c-0.424,1.306-1.898,2.498-4.378,3.542c-0.041,0.018-0.091,0.039-0.133,0.058c-0.172,0.076-17.38,7.613-33.793,7.612
c-4.342,0-8.225-0.534-11.541-1.588c-23.511-7.463-43.615-30.86-59.766-69.565c-16.271-38.657-18.871-69.401-7.717-91.389
c8.661-17.143,35.776-28.018,36.042-28.122c0.054-0.022,0.107-0.043,0.16-0.065C93.223,15.342,94.607,15,95.681,15
c3.305,0,6.313,5.126,8.927,15.173l2.195,8.744c4.736,18.6,4.015,30.234-2.048,32.77l-8.143,3.43
c-0.324,0.134-0.703,0.275-1.121,0.434c-4.498,1.703-13.858,5.245-18.091,15.657c-3.841,9.448-2.251,21.442,4.856,36.668
c9.572,20.493,20.367,30.455,33.002,30.455c5.864,0,10.571-2.288,13.383-3.654c0.518-0.252,0.981-0.483,1.479-0.689l8.092-3.47
c0.835-0.348,1.637-0.517,2.451-0.517c3.895,0,10.879,3.857,22.001,22.191l4.621,7.716
C172.98,189.311,173.43,193.581,172.805,195.507z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="381" height="98" viewBox="0 0 381 98">
<g fill="none" fill-rule="evenodd">
<path fill="#FFF" d="M16,8 C16,12.4171055 12.4171055,16 8,16 C3.58289446,16 0,12.4171055 0,8 C0,3.58289446 3.58289446,0 8,0 C12.4171055,0 15.9882031,3.58289446 16,7.98820308 L16,8 Z" transform="translate(41 41)"/>
<path fill="#96B1D6" d="M44.5503,66.744 L44.2173,67.152 L43.8723,67.571 L43.5143,68.003 L43.1423,68.448 L43.0143,68.6 C42.7843,68.872 42.5483,69.152 42.3043,69.438 L42.0933,69.685 C35.0083,77.978 32.7493,79.635 29.5703,80.084 C27.1523,80.444 24.4493,79.718 22.1323,77.739 C19.8153,75.759 18.6753,73.203 18.6543,70.759 C18.6293,69.275 18.8913,67.945 19.8773,66.126 C15.9973,66.004 12.1163,65.836 8.2373,65.604 C7.8963,67.221 7.7863,68.919 7.9323,70.776 C8.3323,76.235 10.6413,81.002 15.6723,85.3 C20.7033,89.598 25.7733,91.134 31.2273,90.677 C33.3793,90.508 35.2673,90.036 37.0153,89.274 C37.7413,87.218 38.8753,85.264 40.3813,83.502 C42.9263,80.522 46.1603,78.654 49.7273,78.033 C49.8193,77.925 49.9123,77.817 50.0063,77.708 L50.1723,77.514 L50.1443,77.546 C50.1643,77.526 50.1833,77.505 50.2033,77.483 L50.2763,77.4 L51.1013,76.432 L51.6973,75.73 L52.0843,75.27 L52.4653,74.816 L52.8383,74.369 L53.2043,73.927 L53.5623,73.49 L53.9123,73.059 L54.2553,72.632 L54.3903,72.463 C56.0763,70.341 57.4643,68.387 58.5163,66.442 C53.9433,66.438 49.3683,66.446 44.7933,66.444 L44.5503,66.744 Z"/>
<path fill="#B2C5DE" d="M30.9699,54.204 L30.4499,54.12 L29.9139,54.03 L29.3609,53.936 L28.7909,53.837 L28.5949,53.802 C28.2439,53.739 27.8839,53.674 27.5139,53.605 L27.1949,53.546 C16.4699,51.557 13.9049,50.429 11.9269,47.901 C10.4059,45.987 9.6839,43.284 10.2399,40.287 C10.7949,37.29 12.4389,35.025 14.5449,33.785 C15.8169,33.022 17.0999,32.583 19.1689,32.528 C17.3339,29.106 15.5389,25.662 13.8009,22.186 C12.2299,22.7 10.7049,23.453 9.1689,24.508 C4.6419,27.584 1.6679,31.967 0.4609,38.473 C-0.7461,44.979 0.4589,50.138 3.5819,54.632 C4.8049,56.412 6.1569,57.811 7.6909,58.944 C9.8349,58.544 12.0929,58.549 14.3729,58.972 C18.2259,59.687 21.4609,61.554 23.7819,64.332 C23.9209,64.358 24.0619,64.384 24.2029,64.411 L24.4539,64.458 L24.4119,64.45 C24.4399,64.457 24.4679,64.463 24.4959,64.469 L24.6049,64.491 L25.8559,64.721 L26.7609,64.886 L27.3539,64.992 L27.9369,65.095 L28.5109,65.194 L29.0759,65.29 L29.6339,65.381 L30.1819,65.469 L30.7229,65.553 L30.9369,65.585 C33.6179,65.984 36.0039,66.209 38.2139,66.148 C35.9309,62.185 33.6369,58.228 31.3519,54.264 L30.9699,54.204 Z"/>
<path fill="#1C75BB" d="M35.0394,36.1723 L34.8524,35.6803 L34.6624,35.1713 L34.4674,34.6453 L34.2674,34.1013 L34.2004,33.9143 C34.0794,33.5793 33.9554,33.2343 33.8294,32.8803 L33.7214,32.5743 C30.0814,22.2913 29.7764,19.5063 30.9774,16.5293 C31.8734,14.2553 33.8534,12.2773 36.7264,11.2603 C39.5994,10.2433 42.3834,10.5343 44.5104,11.7383 C45.8074,12.4583 46.8284,13.3503 47.9114,15.1143 C49.9574,11.8143 52.0424,8.5383 54.1834,5.2943 C52.9524,4.1903 51.5384,3.2463 49.8564,2.4443 C44.9294,0.0613 39.6454,-0.3227 33.4084,1.8853 C27.1704,4.0933 23.3054,7.7163 20.9744,12.6673 C20.0444,14.6163 19.5094,16.4873 19.2954,18.3823 C20.7134,20.0393 21.8374,21.9973 22.6114,24.1823 C23.9194,27.8773 23.9204,31.6123 22.6744,35.0113 C22.7214,35.1453 22.7684,35.2803 22.8164,35.4153 L22.9014,35.6563 L22.8874,35.6163 C22.8954,35.6433 22.9034,35.6703 22.9124,35.6983 L22.9484,35.8033 L23.3744,37.0013 L23.6844,37.8683 L23.8884,38.4343 L24.0914,38.9903 L24.2924,39.5373 L24.4924,40.0753 L24.6914,40.6033 L24.8894,41.1223 L25.0884,41.6333 L25.1674,41.8343 C26.1614,44.3553 27.1594,46.5343 28.3174,48.4183 C30.6084,44.4593 32.8884,40.4943 35.1784,36.5333 L35.0394,36.1723 Z"/>
<path fill="#4681C1" d="M52.6899,30.6813 L53.0229,30.2733 L53.3679,29.8543 L53.7269,29.4223 L54.0979,28.9773 L54.2259,28.8253 C54.4559,28.5533 54.6919,28.2743 54.9359,27.9873 L55.1469,27.7403 C62.2319,19.4473 64.4909,17.7903 67.6699,17.3413 C70.0879,16.9813 72.7909,17.7073 75.1079,19.6863 C77.4249,21.6663 78.5649,24.2223 78.5859,26.6663 C78.6109,28.1503 78.3489,29.4803 77.3629,31.2993 C81.2429,31.4213 85.1239,31.5893 89.0029,31.8213 C89.3439,30.2043 89.4539,28.5063 89.3079,26.6493 C88.9079,21.1903 86.5989,16.4233 81.5679,12.1253 C76.5369,7.8273 71.4669,6.2913 66.0129,6.7483 C63.8609,6.9173 61.9729,7.3893 60.2249,8.1513 C59.4989,10.2073 58.3649,12.1613 56.8589,13.9233 C54.3139,16.9033 51.0799,18.7713 47.5129,19.3923 C47.4209,19.5003 47.3279,19.6083 47.2339,19.7173 L47.0679,19.9113 L47.0959,19.8793 C47.0759,19.8993 47.0569,19.9203 47.0379,19.9423 L46.9639,20.0253 L46.1389,20.9933 L45.5429,21.6953 L45.1559,22.1553 L44.7749,22.6093 L44.4019,23.0563 L44.0359,23.4983 L43.6779,23.9353 L43.3279,24.3663 L42.9849,24.7933 L42.8499,24.9623 C41.1639,27.0843 39.7759,29.0383 38.7239,30.9833 C43.2969,30.9873 47.8719,30.9793 52.4469,30.9813 L52.6899,30.6813 Z"/>
<path fill="#6390C7" d="M66.271,43.2213 L66.791,43.3053 L67.327,43.3953 L67.88,43.4893 L68.45,43.5883 L68.646,43.6233 C68.997,43.6863 69.357,43.7513 69.727,43.8203 L70.046,43.8793 C80.771,45.8683 83.336,46.9963 85.314,49.5243 C86.835,51.4383 87.557,54.1423 87.001,57.1383 C86.446,60.1353 84.802,62.4003 82.696,63.6403 C81.424,64.4033 80.141,64.8423 78.072,64.8973 C79.907,68.3193 81.702,71.7633 83.44,75.2393 C85.011,74.7253 86.536,73.9723 88.072,72.9173 C92.599,69.8413 95.573,65.4583 96.78,58.9523 C97.987,52.4463 96.782,47.2873 93.659,42.7933 C92.436,41.0133 91.084,39.6143 89.55,38.4813 C87.406,38.8813 85.148,38.8763 82.868,38.4533 C79.015,37.7383 75.78,35.8713 73.459,33.0933 C73.32,33.0673 73.179,33.0413 73.038,33.0143 L72.787,32.9673 L72.829,32.9753 C72.801,32.9683 72.773,32.9623 72.745,32.9563 L72.636,32.9343 L71.385,32.7043 L70.48,32.5393 L69.887,32.4333 L69.304,32.3303 L68.73,32.2313 L68.165,32.1353 L67.607,32.0443 L67.059,31.9563 L66.518,31.8733 L66.304,31.8403 C63.623,31.4413 61.237,31.2163 59.027,31.2773 C61.31,35.2403 63.604,39.1973 65.889,43.1613 L66.271,43.2213 Z"/>
<path fill="#7DA0CF" d="M62.2009,61.2529 L62.3879,61.7449 L62.5779,62.2539 L62.7729,62.7799 L62.9729,63.3239 L63.0399,63.5109 C63.1609,63.8459 63.2849,64.1909 63.4109,64.5449 L63.5189,64.8509 C67.1589,75.1339 67.4639,77.9189 66.2629,80.8959 C65.3669,83.1699 63.3869,85.1479 60.5139,86.1649 C57.6409,87.1819 54.8569,86.8909 52.7299,85.6869 C51.4329,84.9669 50.4119,84.0749 49.3289,82.3109 C47.2829,85.6109 45.1979,88.8869 43.0569,92.1309 C44.2879,93.2349 45.7019,94.1789 47.3839,94.9809 C52.3109,97.3639 57.5949,97.7479 63.8319,95.5399 C70.0699,93.3319 73.9349,89.7089 76.2659,84.7579 C77.1959,82.8089 77.7309,80.9379 77.9449,79.0429 C76.5279,77.3859 75.4029,75.4279 74.6289,73.2429 C73.3209,69.5479 73.3199,65.8129 74.5659,62.4139 C74.5189,62.2799 74.4719,62.1449 74.4239,62.0099 L74.3389,61.7689 L74.3529,61.8089 C74.3449,61.7819 74.3369,61.7549 74.3279,61.7269 L74.2919,61.6219 L73.8659,60.4239 L73.5559,59.5569 L73.3519,58.9909 L73.1489,58.4349 L72.9479,57.8879 L72.7479,57.3499 L72.5489,56.8219 L72.3509,56.3029 L72.1519,55.7919 L72.0729,55.5909 C71.0789,53.0699 70.0809,50.8909 68.9229,49.0069 C66.6319,52.9659 64.3519,56.9309 62.0619,60.8919 L62.2009,61.2529 Z"/>
<path fill="#FFF" d="M113.2502,0.1017 C119.0122,0.1017 122.9972,1.1417 127.1992,3.0907 C130.1012,4.4337 132.1372,6.5567 132.1372,9.1117 C132.1372,10.3247 131.6612,11.7117 130.7512,12.8377 C129.8852,13.8337 128.7152,14.4837 127.1562,14.4837 C125.7262,14.4837 124.0802,13.8337 122.6502,13.0977 C119.3582,11.3647 116.4992,10.6717 112.9032,10.6717 C106.5352,10.6717 103.4162,14.1807 103.4162,18.1227 C103.4162,20.0287 103.8932,21.6317 105.1932,22.8447 C106.4922,24.0137 108.0522,24.7937 110.9112,25.2267 L118.1452,26.2667 C123.7772,27.0897 127.3722,28.6057 129.9712,31.0757 C133.2642,34.1507 134.7372,38.6127 134.7372,44.1147 C134.7372,56.0277 124.7732,62.8287 111.8202,62.8287 C105.1062,62.8287 101.2072,61.9187 96.4852,59.6657 C94.0262,58.5037 92.2412,57.3927 91.2462,55.8797 C93.6992,53.3007 95.1392,50.5557 95.9822,47.3517 C97.1382,47.4697 98.3062,47.9377 100.2542,48.9667 C104.5432,51.2187 107.3592,52.1717 111.9502,52.1717 C119.0552,52.1717 122.9102,49.3127 122.9102,44.4177 C122.9102,42.2947 122.3042,40.4757 121.0482,39.2627 C119.9652,38.2227 118.4052,37.5727 115.5032,37.1397 L108.1382,36.0567 C103.4452,35.3647 99.9132,34.0227 97.1792,31.7897 C97.1772,22.2297 97.0062,15.8517 93.5892,10.5167 C96.6932,4.1437 103.6162,0.1017 113.2502,0.1017 Z M68.8061,0.651 L69.3017139,0.654720352 C76.1972817,0.758821525 81.2917977,3.04472093 85.3531,7.149 L85.3531,7.149 L85.6351649,7.43600797 C91.4687973,13.4771118 91.6781,20.416125 91.6781,32.016 L91.6781,32.016 L91.6771,32.1225 L91.6771,32.1225 L91.6731,32.229 L91.6731,32.467 L91.6701,33.49 L91.6671,34.158 L91.6581,35.139 L91.6561,35.301 L91.6541,35.461 L91.6451,36.097 L91.6331,36.723 L91.6191,37.338 L91.6111,37.642 L91.6021,37.945 L91.5811,38.541 L91.5761,38.688 L91.5701,38.835 L91.5441,39.417 L91.5195774,39.8950997 C91.1391523,46.8610479 89.8283,51.8068 85.3491,56.286 L85.3491,56.286 L85.0571697,56.5760654 C80.9452552,60.5935489 75.7818674,62.784 68.8001,62.784 L68.8001,62.784 L68.2979073,62.7801786 C61.4777066,62.6757965 56.4185762,60.435881 52.3791,56.413 L52.3791,56.413 L52.2531,56.286 L52.0751,56.106 L51.7829133,55.8017314 C47.3751498,51.1243861 46.2812702,45.887383 46.0131,38.361 L46.0131,38.361 L46.0051,38.128 L45.9871,37.537 L45.9731,36.937 L45.9601,36.327 L45.9501,35.707 L45.9431,35.078 L45.9371,34.438 L45.9331,33.789 L45.9301,32.794 L45.9281,31.42 L45.9301,31.3 L45.93085,31.253875 L45.93085,31.253875 L45.9331,31.207 L45.9331,30.978 L45.933975,30.74525 L45.933975,30.74525 L45.9341,30.514 L46.1969087,30.188375 C48.5224559,27.2307372 49.7731,23.5477857 49.7731,19.465 L49.7731,19.465 L49.7663919,18.9300561 C49.7083041,16.6191735 49.2736,14.404 48.4871,12.363 L48.4871,12.363 L48.7009489,11.9380487 C49.5793249,10.2478402 50.7358692,8.67115385 52.2571,7.149 C56.4161,2.947 61.6581,0.651 68.8061,0.651 L68.8061,0.651 Z M212.1013,0.2752 C213.5303,0.2752 214.7003,0.7512 215.7833,1.6612 C217.0393,2.7012 217.9493,4.0872 217.9493,5.9502 C217.9493,7.6392 217.2993,8.7222 215.2633,11.1482 L215.2633,11.1482 L203.7403,25.0972 L218.9883,51.8252 C220.3753,54.2512 220.8513,55.2472 220.9383,56.6772 C221.0243,58.5832 219.9413,60.5762 217.9493,61.7022 C216.9093,62.3082 215.8263,62.6552 214.7433,62.6552 C211.4943,62.6552 210.2383,60.4462 208.6783,57.7172 L208.6783,57.7172 L195.2493,34.2372 L187.3653,43.7682 L187.3653,27.0902 L206.5993,3.9142 C208.7653,1.3142 209.9353,0.2752 212.1013,0.2752 Z M24.216,0.6215 C36.822,0.6215 44.273,9.1555 44.273,19.4655 C44.273,26.8295 40.201,32.8945 33.097,35.7535 L42.324,51.8255 C43.71,54.2515 44.186,55.2475 44.273,56.6775 C44.36,58.5835 43.277,60.5755 41.284,61.7025 C40.244,62.3085 39.161,62.6555 38.078,62.6555 C34.829,62.6555 33.573,60.4455 32.014,57.7165 L20.577,37.7465 L12.13,37.7465 L12.13,54.6605 C12.127,57.3625 12.03,58.3495 11.307,59.7965 C10.397,61.4855 8.448,62.6555 6.065,62.6555 C3.682,62.6555 1.733,61.4855 0.823,59.7965 C0.11644,58.38242 0.0079984,57.4070216 0.000453568,54.8407204 L0.001,7.6965 C0.005,5.9745 0.091,3.9095 1.69,2.3105 C3.289,0.7125 5.353,0.6265 7.076,0.6215 L24.216,0.6215 Z M176.992,0.275 C179.375,0.275 181.324,1.445 182.234,3.134 C182.94056,4.54808 183.049002,5.5225568 183.056546,8.08966899 L183.057,54.66 C183.053,57.363 182.957,58.35 182.234,59.796 C181.324,61.486 179.375,62.655 176.992,62.655 C174.609,62.655 172.66,61.486 171.75,59.796 C171.04344,58.38192 170.934998,57.4074432 170.927454,54.840331 L170.927,36.49 L150.047,36.49 L150.047,54.66 C150.044,57.363 149.947,58.35 149.224,59.796 C148.314,61.486 146.365,62.655 143.982,62.655 C141.6,62.655 139.651,61.486 138.741,59.796 C138.03348,58.38192 137.925922,57.4074432 137.918449,54.840331 L137.918,53.107 C139.409,50.562 140.238,47.551 140.238,44.114 C140.238,40.234 139.505,36.87 137.917,34.146 L137.918,8.27 C137.921,5.568 138.017,4.581 138.741,3.134 C139.651,1.445 141.6,0.275 143.982,0.275 C146.365,0.275 148.314,1.445 149.224,3.134 C149.93152,4.54808 150.039078,5.5225568 150.046551,8.08966899 L150.047,25.747 L170.927,25.747 L170.927,8.27 C170.931,5.568 171.027,4.581 171.75,3.134 C172.66,1.445 174.609,0.275 176.992,0.275 Z M234.9801,5.68434189e-14 L235.303109,0.00453022593 C236.995591,0.0530415225 238.211924,0.494176471 239.3131,1.473 L239.3131,1.473 L239.450793,1.595272 C240.30989,2.379155 240.93005,3.3587 241.7271,5.405 L241.7271,5.405 L241.7811,5.545 L259.5861,52.763 L259.685079,53.0283499 C260.792367,56.0132914 261.386243,58.2458286 259.2831,60.518 L259.2831,60.518 L259.079373,60.7260305 C257.967512,61.8042215 256.458806,62.38 254.9501,62.38 L254.9501,62.38 L254.666277,62.3740466 C253.453406,62.3225204 252.4601,61.9374286 251.6151,61.254 L251.6151,61.254 L251.49953,61.1554119 C250.555554,60.3306879 250.076523,59.4065385 249.1121,56.845 L249.1121,56.845 L249.0591,56.705 L247.0231,51.117 L224.0851,51.117 L216.2041,37.302 L228.1791,5.545 L228.301401,5.23157683 C229.107692,3.19753515 229.740481,2.25680952 230.6481,1.473 C231.8181,0.433 233.1171,5.68434189e-14 234.9801,5.68434189e-14 L234.9801,5.68434189e-14 Z M68.8061,11.395 L68.455556,11.3999431 C65.3203717,11.4886709 62.7222071,12.7651786 61.0511,14.687 L61.0511,14.687 L60.9536788,14.7986229 C58.7354414,17.3719751 58.0621,20.4003429 58.0621,32.016 L58.0621,32.016 L58.0621,32.366 L58.06335,32.967375 L58.06335,32.967375 L58.0661,33.553 L58.0681,33.768 L58.0751,34.393 L58.0841,34.999 L58.0951,35.586 L58.1071,36.155 L58.1221,36.705 L58.1261,36.84 L58.1301,36.974 L58.1481,37.497 L58.1681,38.004 L58.1891,38.494 L58.2141,38.968 L58.2411,39.425 L58.2541,39.649 L58.2701,39.868 L58.3001,40.296 L58.3081,40.4 L58.3161,40.503 L58.3511,40.908 L58.3881,41.3 L58.4290281,41.6903618 C58.8375833,45.3946167 59.623,47.1119 60.9831,48.675 L60.9831,48.675 L61.0471,48.748 L61.1321,48.844 C62.8681,50.782 65.5611,52.041 68.8001,52.041 L68.8001,52.041 L69.1451348,52.0362088 C72.2313066,51.9502054 74.7961,50.7127857 76.4701,48.844 L76.4701,48.844 L76.5551,48.748 L76.6231,48.67 L76.7571,48.513 L76.8881,48.354 L77.0141,48.194 L77.1361,48.032 L77.2630277,47.8556209 C78.1786992,46.549862 78.7629261,44.9599565 79.1111,42.209 L79.1111,42.209 L79.1321,42.042 L79.1741,41.677 L79.2131,41.3 L79.23235,41.105875 L79.23235,41.105875 L79.2501,40.908 L79.2671,40.708 L79.3021,40.296 L79.33235,39.868375 L79.33235,39.868375 L79.3611,39.425 L79.3741,39.199 L79.4001,38.733 L79.4231,38.251 L79.4441,37.753 L79.4541,37.497 L79.4721,36.974 L79.4871,36.432 L79.5071,35.586 L79.5091,35.441 L79.5121,35.295 L79.5221,34.699 L79.5301,34.083 L79.5361,33.447 L79.5411,32.792 L79.5431,32.116 L79.5441,31.42 L79.5421,30.384 L79.5371,29.597 L79.5317998,29.1212996 C79.4151387,19.7202276 78.6551656,17.059459 76.5591,14.687 L76.5591,14.687 L76.3697333,14.4761475 C74.6314533,12.6028712 71.9805286,11.395 68.8061,11.395 L68.8061,11.395 Z M234.9801,18.584 L226.7061,40.981 L243.2551,40.981 L234.9801,18.584 Z M23.566,11.3645 L12.13,11.3645 L12.13,27.6095 L23.566,27.6095 C28.851,27.6095 32.23,24.3175 32.23,19.5085 C32.23,14.6575 28.851,11.3645 23.566,11.3645 Z" transform="translate(119.278 18.474)"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="72" height="72" viewBox="0 0 72 72">
<path fill="#FFF" d="M10.5,71.6800003 L33.8800001,71.6800003 L33.8800001,46.2000002 L25.4800001,46.2000002 L25.4800001,37.8000002 L33.8800001,37.8000002 L33.8800001,27.3000001 C33.8800001,21.5102344 38.5902345,16.8000001 44.3800002,16.8000001 L54.8800002,16.8000001 L54.8800002,25.2000001 L46.4800002,25.2000001 C44.1639845,25.2000001 42.2800002,27.0839845 42.2800002,29.4000001 L42.2800002,37.8000002 L54.5010159,37.8000002 L53.1010159,46.2000002 L42.2800002,46.2000002 L42.2800002,71.6800003 L61.1800003,71.6800003 C66.9697659,71.6800003 71.6800003,66.9697659 71.6800003,61.1800003 L71.6800003,10.5 C71.6800003,4.71023436 66.9697659,0 61.1800003,0 L10.5,0 C4.71023436,0 0,4.71023436 0,10.5 L0,61.1800003 C0,66.9697659 4.71023436,71.6800003 10.5,71.6800003 Z M4.20000002,10.5 C4.20000002,7.02625003 7.02625003,4.20000002 10.5,4.20000002 L61.1800003,4.20000002 C64.6537503,4.20000002 67.4800003,7.02625003 67.4800003,10.5 L67.4800003,61.1800003 C67.4800003,64.6537503 64.6537503,67.4800003 61.1800003,67.4800003 L46.4800002,67.4800003 L46.4800002,50.4000002 L56.6589846,50.4000002 L59.4589846,33.6000001 L46.4800002,33.6000001 L46.4800002,29.4000001 L59.0800003,29.4000001 L59.0800003,12.6000001 L44.3800002,12.6000001 C36.2742188,12.6000001 29.6800001,19.1942188 29.6800001,27.3000001 L29.6800001,33.6000001 L21.2800001,33.6000001 L21.2800001,50.4000002 L29.6800001,50.4000002 L29.6800001,67.4800003 L10.5,67.4800003 C7.02625003,67.4800003 4.20000002,64.6537503 4.20000002,61.1800003 L4.20000002,10.5 Z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="72" height="72" viewBox="0 0 72 72">
<g fill="#FFF">
<path d="M10.5,71.6800003 L61.1800003,71.6800003 C66.9697659,71.6800003 71.6800003,66.9697659 71.6800003,61.1800003 L71.6800003,10.5 C71.6800003,4.71023436 66.9697659,0 61.1800003,0 L10.5,0 C4.71023436,0 0,4.71023436 0,10.5 L0,61.1800003 C0,66.9697659 4.71023436,71.6800003 10.5,71.6800003 Z M4.20000002,10.5 C4.20000002,7.02625003 7.02625003,4.20000002 10.5,4.20000002 L61.1800003,4.20000002 C64.6537503,4.20000002 67.4800003,7.02625003 67.4800003,10.5 L67.4800003,61.1800003 C67.4800003,64.6537503 64.6537503,67.4800003 61.1800003,67.4800003 L10.5,67.4800003 C7.02625003,67.4800003 4.20000002,64.6537503 4.20000002,61.1800003 L4.20000002,10.5 Z"/>
<path d="M35.8400002 54.7400002C46.2612502 54.7400002 54.7400002 46.2612502 54.7400002 35.8400002 54.7400002 25.4187501 46.2612502 16.9400001 35.8400002 16.9400001 25.4187501 16.9400001 16.9400001 25.4187501 16.9400001 35.8400002 16.9400001 46.2612502 25.4187501 54.7400002 35.8400002 54.7400002zM35.8400002 21.1400001C43.9457815 21.1400001 50.5400002 27.7342188 50.5400002 35.8400002 50.5400002 43.9457815 43.9457815 50.5400002 35.8400002 50.5400002 27.7342188 50.5400002 21.1400001 43.9457815 21.1400001 35.8400002 21.1400001 27.7342188 27.7342188 21.1400001 35.8400002 21.1400001zM56.8400002 21.1400001C60.3137503 21.1400001 63.1400003 18.3137501 63.1400003 14.8400001 63.1400003 11.36625 60.3137503 8.54000004 56.8400002 8.54000004 53.3662502 8.54000004 50.5400002 11.36625 50.5400002 14.8400001 50.5400002 18.3137501 53.3662502 21.1400001 56.8400002 21.1400001zM56.8400002 12.7400001C57.9977346 12.7400001 58.9400003 13.6822657 58.9400003 14.8400001 58.9400003 15.9977344 57.9977346 16.9400001 56.8400002 16.9400001 55.6822659 16.9400001 54.7400002 15.9977344 54.7400002 14.8400001 54.7400002 13.6822657 55.6822659 12.7400001 56.8400002 12.7400001z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="72" height="72" viewBox="0 0 72 72">
<g fill="none" fill-rule="evenodd">
<path fill="#FFF" fill-rule="nonzero" d="M8.45785417,38 L0.564679098,38 L0.564679098,12.6666667 L8.45785417,12.6666667 L8.45785417,38 Z M9.24540992,4.59543237 C9.24540992,2.05885883 7.17521322,0 4.62490727,0 C2.06491098,0 0,2.05885883 0,4.59543237 C0,7.13288158 2.06491098,9.19174041 4.62490727,9.19174041 C7.17521322,9.19174041 9.24540992,7.13288158 9.24540992,4.59543237 Z M38,24.0626382 C38,17.262099 36.5548266,12.2182891 28.5634273,12.2182891 C24.7234328,12.2182891 22.1458179,14.1273968 21.0935413,16.1126936 L21.0860534,16.1126936 L21.0860534,12.6666667 L13.4183976,12.6666667 L13.4183976,38 L21.0860534,38 L21.0860534,25.4217828 C21.0860534,22.1276964 21.9295484,18.9365091 26.0369065,18.9365091 C30.0883254,18.9365091 30.2195846,22.7034937 30.2195846,25.6310841 L30.2195846,38 L38,38 L38,24.0626382 Z" transform="translate(17 17)"/>
<path fill="#FFF" fill-rule="nonzero" d="M10.5,71.6800003 L61.1800003,71.6800003 C66.9697659,71.6800003 71.6800003,66.9697659 71.6800003,61.1800003 L71.6800003,10.5 C71.6800003,4.71023436 66.9697659,0 61.1800003,0 L10.5,0 C4.71023436,0 0,4.71023436 0,10.5 L0,61.1800003 C0,66.9697659 4.71023436,71.6800003 10.5,71.6800003 Z M4.20000002,10.5 C4.20000002,7.02625003 7.02625003,4.20000002 10.5,4.20000002 L61.1800003,4.20000002 C64.6537503,4.20000002 67.4800003,7.02625003 67.4800003,10.5 L67.4800003,61.1800003 C67.4800003,64.6537503 64.6537503,67.4800003 61.1800003,67.4800003 L10.5,67.4800003 C7.02625003,67.4800003 4.20000002,64.6537503 4.20000002,61.1800003 L4.20000002,10.5 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="72" height="72" viewBox="0 0 72 72">
<path fill="#FFF" d="M71.6800003,7.83507819 C67.1710159,8.04289069 67.2694534,8.02593753 66.7597659,8.06859371 L69.4301566,0.442421842 C69.4301566,0.442421842 61.0946878,3.50875001 58.9815628,4.05726568 C53.4318752,-0.930781324 45.1828127,-1.15117184 39.2853127,2.47351567 C34.4558595,5.44250002 31.863672,10.5410157 32.7282815,16.5003126 C23.3291408,15.1960157 15.4098437,10.740625 9.15742188,3.22984369 L7.17992187,0.854765664 L5.70226568,3.56835936 C3.83468752,6.99726569 3.21453133,10.9178125 3.95554686,14.6075782 C4.25960936,16.1213282 4.77640634,17.5650782 5.49226568,18.9169532 L3.79585936,18.2596094 L3.59460936,21.0940626 C3.39062501,23.9733594 4.34929686,27.3344533 6.15945319,30.0841408 C6.66914069,30.8585158 7.32539069,31.7089065 8.15718753,32.5478126 L7.28054687,32.4132815 L8.35023438,35.661172 C9.75625004,39.9284377 12.6765626,43.229922 16.4664064,45.0652345 C12.6814844,46.6714065 9.62390636,47.6962502 4.59812502,49.3494534 L-7.95807867e-15,50.8610159 L4.24703134,53.1830471 C5.86632818,54.0684377 11.5882814,57.0253909 17.2418751,57.9124221 C29.8090626,59.8833596 43.9583595,58.2782816 53.4838284,49.6994534 C61.5070316,42.4735939 64.1396878,32.1950783 63.5928128,21.4987501 C63.5102346,19.8794532 63.9537503,18.3339844 64.8418753,17.1478126 C66.6208596,14.7727344 71.6690628,7.85093753 71.6800003,7.83507819 Z M61.4835159,14.6321876 C60.0085939,16.6014844 59.2697659,19.1165626 59.4021096,21.7131251 C59.9539066,32.502422 57.0182816,40.8696095 50.6761721,46.581172 C43.2676565,53.2535939 31.3178908,55.8725784 17.8921094,53.7665627 C15.4607032,53.3853909 12.9478126,52.5317189 10.8680469,51.6791409 C15.0817187,50.2293752 18.3356251,48.9371095 23.5905469,46.449922 L30.9263283,42.9778127 L22.8271094,42.4593752 C18.9475782,42.2110939 15.7171876,40.3309377 13.7314844,37.2782815 C14.7858594,37.2170315 15.8025001,37.0464065 16.8147657,36.7642188 L24.5393751,34.6128126 L16.7502344,32.7053126 C12.9653126,31.7783595 10.8078907,29.5137501 9.66437504,27.7768751 C8.9135157,26.635547 8.42296872,25.4663283 8.12875003,24.3884376 C8.90968754,24.5978908 9.82023438,24.7471876 11.2885937,24.8926564 L18.4980469,25.6057814 L12.7859376,21.1498438 C8.67015636,17.9396876 7.02078135,13.1167969 8.22992188,8.4803907 C21.0749219,21.8033594 36.1566408,20.8020314 37.6747658,21.1542188 C37.3406252,17.9085157 37.3318752,17.9008594 37.2443752,17.5918751 C35.3002345,10.7192969 39.5609377,7.22968753 41.4826565,6.04843753 C45.4967189,3.58148436 51.8683596,3.20960935 56.2816409,7.27398437 C57.2348439,8.15117187 58.5238284,8.49625004 59.7302346,8.19656253 C60.8130471,7.92750003 61.7017189,7.64257819 62.5717971,7.33250003 L60.7605471,12.5048437 L63.0727346,12.5064844 C62.6363284,13.0916407 62.1129689,13.7921876 61.4835159,14.6321876 Z" transform="translate(0 7)"/>
</svg>
<!DOCTYPE html>
<html lang="en">
<head>
<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" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<!-- para concectar con css -->
<link rel="stylesheet" href="./estilos/home.css" />
<link rel="stylesheet" href="estilos/home.css">
<!-- el icono para la pagina -->
<link rel="shortcut icon" href="./imagenes/roshkaicon.ico" sizes="any" />
<link rel="shortcut icon" href="imagenes/roshkaicon.ico" sizes="any" />
<title>Roshka WebSite</title>
</head>
<div class="header">
</head>
<div class="header">
<div class="logo">
<a href="./index.html"> <img class="logoi" src="./imagenes/logo-roshka.svg" alt="" /> </a
><!-- logo con link -->
<a href="./index.html"> <img class="logoi" src="imagenes/logo-roshka.svg" alt="" /> </a
><!-- logo con link -->
</div>
<div class="menu">
<ul>
<li class="link-menu"><a href="/">Home</a></li>
<li class="link-menu"><a href="./home.html">Postulate</a></li>
</ul>
<ul>
<li class="link-menu"><a href="formulario.html">Postulate</a></li>
<li class="link-menu"><a href="/">Home</a></li>
</ul>
</div>
<!-- menu -->
</div>
<!-- header -->
</div>
<!-- header -->
<div class="main">
<div class="main">
<div class="seccion hero">
<!-- <div class="contenido"> -->
<br> <br> <br> <br> <br> <br><br><div class="texto">
<div class="titulo">
<div class="titulo">
<h2>Es tu turno <strong>Postulate</strong> para el bootcamp</h2>
<h1>Aprende</h1>
</div>
</div>
<div class="parrafo">
<p data-block-key="cwggy">Es un campo de entrenamiento intensivo y gratuito para principiantes que ya programan y quieren ser parte de la empresa</p>
</div>
<div class="postulacion">
<a href="/postulacion" class="cta-main">POSTULACION</a>
</div>
</div>
<!-- <div class="contenido"> -->
<div class="grafico">
<img style="align-items:right ;" src="./imagenes/ilustracion-herov3.svg" alt="">
<br> <br> <br> <br> <br> <br><br><div class="texto">
<div class="titulo">
<div class="titulo">
<h2>Es tu turno <strong>Postulate</strong> para el bootcamp</h2>
<h1>Aprende</h1>
</div>
</div>
<div class="parrafo">
<p data-block-key="cwggy">Es un campo de entrenamiento intensivo y gratuito para principiantes que ya programan y quieren ser parte de la empresa</p>
</div>
<div class="postulacion">
<button type="submit" class="cta-main">POSTULACION</button>
<!-- <a href="/postulacion" class="cta-main">POSTULACION</a> -->
</div>
</div>
<div class="grafico">
<img style="align-items:right ;" src="imagenes/ilustracion-herov3.svg" alt="">
</div>
<!-- </div> -->
<!-- </div> -->
</div>
<!-- pie de pagina -->
<div class="footer">
<div class="logofooter"><img src="imagenes/logo_footer.svg" alt="" class="logofooter"></div>
</div>
</div>
</div>
</div>
</body>
</html>
<style>
img.logoi{
width: 200px;
}
img{
width: 400px;
padding: 10px;
display: block;
padding:10px ;
}
.header {
margin-bottom: 0;
width: 700px;
}
a{
float: right 100px;
color: #fff;
font-size: larger;
text-decoration: none;
padding: 10px;
}
body {
background: linear-gradient(100deg, rgba(20, 99, 155, 0.25), rgba(30, 148, 227, 0.25));
background-image: url(imagenes/descarga.svg);
background-size: contain;
background-attachment: fixed;
background-blend-mode: multiply;
font-family: Georgia, 'Times New Roman', Times, serif;
color: white;
position: relative;
width: 100px;
height: 100px;
}
/* ul{
list-style: none;
}
.menu >ul{
float: right;
}
.menu li a {
color:#fff;
text-decoration:none;
padding:10px 12px;
display:block;
}
.menu li ul li {
marging-left
position:relative;
} */
.menu {
width: 400%;
float: left;
}
.menu ul li {
float: right;
list-style-type: none;
text-align: right;
}
div.menu{
float: right;
}
.menu ul li a {
padding-left: 5px;
text-decoration: none;
font-size: clamp(145px);
text-transform: uppercase;
display: block;
position: relative;
overflow: hidden;
padding-bottom: 50px;
white-space: nowrap;
}
.grafico,svg {
max-width: 50px;
display: block;
height: auto;
}
.seccion.hero {
margin-top: 10px;
padding-bottom: 10px;
width: 900px;
}
.hero {
perspective: 100px;
}
.hero {
display: grid;
grid-template-columns: auto repeat(5, 0.5fr) auto;
}
.hero {
display: flex;
flex-direction: column;
align-items: center;
padding-left: 200px;
/* padding-right: 200px;
*/
}
/* */
.postulacion{
border-radius: 30px;
}
.cta-main{
width: 200px;
font-family: monospace;
background-color: yellow;
border: none;
}
</style>
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<!DOCTYPE html>
<html>
<head>
<title>BootcampsLogin</title>
</head>
<body>
<div align=" center">
<h1>User Login Form</h1>
<form action="login" method="post">
<table>
<tr><td>User Name:</td> <td><input type="text" name = "username"></td></tr>
<tr><td>Password:</td><td><input type="password" name="password"></td></tr>
<tr><td><input type="submit" value="Login"/></td></tr>
</table>
</form>
</div>
</body>
</html>
\ No newline at end of file
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<!DOCTYPE html>
<html>
<head>
<title>LoginExitoso</title>
</head>
<body>
<div align = "center">
<h1>LOGGIN EXITOSO</h1>
</div>
</body>
</html>
\ No newline at end of file