-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b166cd3
Showing
35 changed files
with
1,616 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
RewriteEngine On | ||
RewriteCond %{HTTP_HOST} !^mate-web.com$ | ||
RewriteRule ^(.*)$ https://mate-web.com/$1 [R=301,L] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<!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"> | ||
<link rel="stylesheet" href="/css/styles.css"> | ||
<link rel="stylesheet" href="/css/service.css"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;1,500&display=swap" rel="stylesheet"> | ||
<title>Servicio básico de landing page</title> | ||
<link rel="icon" type="image/svg+xml" href="/img/favicon.svg"> | ||
<link rel="icon" type="image/png" href="/img/favicon.png"> | ||
</head> | ||
<body> | ||
<header> | ||
<img src="img/logo.png" alt="LOGO"> | ||
<ul class="menuhead"> | ||
<li><a href="index.html">Inicio</a></li> | ||
<li><a href="platinum.html">Ir a servicio platinum</a></li> | ||
</ul> | ||
</header> | ||
<div class="plan"> | ||
<h3>Plan básico de landing page</h3> | ||
<p>Perfecto para aumentar la profecionalidad de tus projectos</p> | ||
<section class="box-plan"> | ||
<div class="details-box-plan"> | ||
<h4>Una Página</h4> | ||
<p>Toda la información se ubica en un punto, muy comoda para que usuario encuentre tu información.</p> | ||
<img src="img/info-page.png" alt="info-page-ilustration"> | ||
</div> | ||
<div class="details-box-plan"> | ||
<h4>Formulario de contacto</h4> | ||
<p>Para que te contacten por e-mail de forma eficiente y rapida</p> | ||
<img src="img/contact-ilus.png" alt="contact-ilustration"> | ||
</div> | ||
<div class="details-box-plan"> | ||
<h4>Galeria de imagenes</h4> | ||
<p>Tener una forma de mostrar tu trabajo siempre da confianza</p> | ||
<img src="img/galery-img.png" alt="galery-img-ilustration"> | ||
</div> | ||
<div class="details-box-plan"> | ||
<h4>Enlaces a tus redes</h4> | ||
<p>Redireccionar a tus redes da más opciones a los usuarios, tanto para contactar con vos o para seguir tu trabajo</p> | ||
<img src="img/links.png" alt="links-ilustration"> | ||
</div> | ||
<div class="details-box-plan"> | ||
<h4>Certificado de seguridad SSL</h4> | ||
<p>Esto es para que no se filtre información sensible de las personas que buscan contactarte</p> | ||
<img src="img/security.png" alt="security-ilustration"> | ||
</div> | ||
<div class="details-box-plan"> | ||
<h4>Adaptado a todos los dispositivos</h4> | ||
<p>Para llegar a más gente es importante poder abrir tu página en tablets y dispositivos moviles.</p> | ||
<img src="img/responsive.png" alt="responsive-ilustration"> | ||
</div> | ||
<div class="details-box-plan"> | ||
<h4>Modificaciones durante 2 meses</h4> | ||
<p>Esto es para modificar partes de la página que no te gusten o que quieras mejorar</p> | ||
<img src="img/modification-page.png" alt="modification-page-ilustration"> | ||
</div> | ||
<div class="details-box-plan"> | ||
<h4>Dominio/Hosting por 1 año</h4> | ||
<p>Vas a ser dueño de la página por 1 año</p> | ||
<img src="img/domain-host.png" alt="domain-host-ilustration"> | ||
</div> | ||
</section> | ||
<a class="btn-service" href="https://mpago.la/2S544LB"><button>Solicita ahora</button></a> | ||
</div> | ||
<footer> | ||
<ul> | ||
<li><a href="index.html">Inicio</a></li> | ||
<li><a href="graphicdesing.html">Diseño de logos e iconos</a></li> | ||
</ul> | ||
<img src="/img/logo.png" alt=""> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
.plan{ | ||
margin: 50px auto 50px auto; | ||
width: 100%; | ||
padding: 15px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
position: relative; | ||
} | ||
.plan h3{ | ||
font-size: 22px; | ||
} | ||
.plan p{ | ||
padding: 30px 0 30px 0; | ||
} | ||
.box-plan{ | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
} | ||
.details-box-plan{ | ||
border-left: 2px solid var(--yell); | ||
width: 45%; | ||
margin: 10px; | ||
padding: 5px; | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: space-between; | ||
} | ||
.details-box-plan h4{ | ||
width: 100%; | ||
padding-left: 15px; | ||
font-weight: bold; | ||
} | ||
.details-box-plan p{ | ||
margin: auto; | ||
width: 70%; | ||
} | ||
.details-box-plan img{ | ||
width: 100px; | ||
height: 100px; | ||
} | ||
.btn-service{ | ||
width: 50%; | ||
height: 60px; | ||
margin-top: 30px; | ||
} | ||
.btn-service button{ | ||
border: none; | ||
width: 100%; | ||
height: 60px; | ||
font-size: 20px; | ||
cursor: pointer; | ||
transition: 0.4s; | ||
background-color: var(--blu); | ||
color: var(--wht); | ||
} | ||
.btn-service button:hover{ | ||
animation: hoverbtnbuy 1s infinite alternate; | ||
background-color: var(--yell); | ||
} | ||
|
||
@media all and (min-width:5px) and (max-width: 425px){ | ||
|
||
.plan{ | ||
margin: 30px auto 30px auto; | ||
width: 100%; | ||
} | ||
.plan h3{ | ||
text-align: center; | ||
} | ||
.plan p{ | ||
text-align: center; | ||
} | ||
.details-box-plan:nth-child(1){ | ||
border-top: 2px solid var(--yell); | ||
} | ||
.details-box-plan{ | ||
border-left: none; | ||
border-bottom: 2px solid var(--yell); | ||
width: 90%; | ||
} | ||
.details-box-plan h4{ | ||
text-align: center; | ||
} | ||
.details-box-plan p{ | ||
width: 80%; | ||
text-align: left; | ||
} | ||
.details-box-plan img{ | ||
margin: auto; | ||
} | ||
.btn-service{ | ||
width: 60%; | ||
height: 50px; | ||
} | ||
} |
Oops, something went wrong.