-
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.
Trabajamos en el index 3 y finalizamos 2 secciones
- Loading branch information
Showing
6 changed files
with
165 additions
and
102 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,22 @@ | ||
{ | ||
"workbench.colorCustomizations": { | ||
"activityBar.activeBackground": "#e7e7e4", | ||
"activityBar.background": "#e7e7e4", | ||
"activityBar.foreground": "#15202b", | ||
"activityBar.inactiveForeground": "#15202b99", | ||
"activityBarBadge.background": "#38a7a7", | ||
"activityBarBadge.foreground": "#15202b", | ||
"commandCenter.border": "#15202b99", | ||
"sash.hoverBorder": "#e7e7e4", | ||
"statusBar.background": "#cfcfc9", | ||
"statusBar.foreground": "#15202b", | ||
"statusBarItem.hoverBackground": "#b7b7ae", | ||
"statusBarItem.remoteBackground": "#cfcfc9", | ||
"statusBarItem.remoteForeground": "#15202b", | ||
"titleBar.activeBackground": "#cfcfc9", | ||
"titleBar.activeForeground": "#15202b", | ||
"titleBar.inactiveBackground": "#cfcfc999", | ||
"titleBar.inactiveForeground": "#15202b99" | ||
}, | ||
"peacock.color": "#cfcfc9" | ||
} |
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,107 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap'); | ||
|
||
|
||
*{ | ||
box-sizing: border-box; | ||
margin: 0; | ||
padding: 0; | ||
font-family: 'nunito', sans-serif; | ||
font-size: 20px; | ||
} | ||
|
||
html{ | ||
scroll-behavior: smooth; | ||
} | ||
|
||
body{ | ||
background-color: #cfcfc9; | ||
} | ||
|
||
.header{ | ||
position: fixed; | ||
top: 0; | ||
width: 100%; | ||
z-index: 1000; | ||
background-color: transparent; | ||
/* background: linear-gradient(to right, #add4e3, #ffffff); */ | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
height: 70px; | ||
padding: 35px 10%; | ||
} | ||
|
||
.header .logo{ | ||
cursor: pointer; | ||
} | ||
|
||
.header .logo img{ | ||
height: 95px; | ||
width: auto; | ||
transition: all 0.3; | ||
} | ||
|
||
.header .logo img:hover{ | ||
transform: scale(1.2); | ||
} | ||
|
||
.header .nav-links{ | ||
list-style: none; | ||
} | ||
|
||
.header .nav-links li{ | ||
display: inline-block; | ||
padding: 0 20px; | ||
} | ||
|
||
.header .nav-links li:hover{ | ||
transform: scale(1.1); | ||
cursor: pointer; | ||
} | ||
|
||
.header .nav-links a{ | ||
font-size: 700; | ||
color: rgb(0, 0, 0); | ||
text-decoration: none; | ||
} | ||
|
||
.header .nav-links li a:hover{ | ||
color: seagreen; | ||
} | ||
|
||
.header .btn button{ | ||
font-weight: 700; | ||
color:rgb(255, 255, 255); | ||
padding: 9px 25px; | ||
background: seagreen; | ||
border: none; | ||
border-radius: 50px; | ||
cursor: pointer; | ||
transition: all 0.3s ease 0s; | ||
} | ||
|
||
.header .btn button:hover{ | ||
background-color: rgb(9, 9, 11); | ||
color: rgb(225, 218, 219); | ||
transform: scale(1.1); | ||
} | ||
|
||
/* SECTION VIDEO */ | ||
|
||
video { | ||
width: 100%; | ||
height: 100%; | ||
object-fit: cover; | ||
} | ||
|
||
.video-container { | ||
position: relative; | ||
padding-bottom: 56.25%; | ||
overflow: hidden; | ||
max-width: 100%; | ||
height: auto; | ||
display: block; | ||
margin: 0 auto; | ||
} | ||
|
||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -1,109 +1,43 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
</head> | ||
<body> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
<link rel="stylesheet" href="/Styles/styles1.css"> | ||
</head> | ||
<body> | ||
|
||
<h1>Hola</h1> | ||
<!-- SECTION Header --> | ||
|
||
<!-- SECTION Header --> | ||
<section class="home" id="home1"> | ||
|
||
<section class="home" id="home1"> | ||
|
||
<header class="header"> | ||
<div class="logo"> | ||
<img src="/imgs/AgroMps-1.png" alt="logo de la marca"> | ||
</div> | ||
<nav> | ||
<ul class="nav-links"> | ||
<li><a href="#home1">Inicio</a></li> | ||
<li><a href="#banner">Nosotros</a></li> | ||
<li><a href="#mapa">Mapas</a></li> | ||
<li><a href="#banner">Servicios</a></li> | ||
<li><a href="#">Contacto</a></li> | ||
</ul> | ||
</nav> | ||
<a class="btn" href="index3.html" ><button>Registrarse</button></a> | ||
</header> | ||
</section> | ||
|
||
<!-- SECTION Home-Video --> | ||
<section> | ||
<video autoplay loop muted> | ||
<source src="/Videos/AgroMaps.mp4" type="video/mp4"> | ||
Tu navegador no soporta la etiqueta de video. | ||
</video> | ||
</section> | ||
|
||
<!-- SECTION Banner 1 Nosotros --> | ||
<section id="banner" class="section-m1"> | ||
<h4>¿Que es TrusTrace?</h4> | ||
<h2>TyT Es una empresa en linea que se dedica a la | ||
<span>Transabilidad Confiable</span> - en BlockChain</h2> | ||
<button class="normal"> VER MAS</button> | ||
</section> | ||
|
||
<!-- Section InteractiveMap --> | ||
<section id="mapa"> | ||
<div class="map-container"> | ||
<iframe | ||
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3983078.431924583!2d-87.66068603800086!3d12.861028211200027!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8f10c200ceff22cd%3A0xc8faa7e53fac15b5!2sNicaragua!5e0!3m2!1ses!2sni!4v1724261034935!5m2!1ses!2sni" | ||
width="1920" height="450" style="border:0;" allowfullscreen | ||
loading="lazy" | ||
referrerpolicy="no-referrer-when-downgrade"></iframe> | ||
</div> | ||
</section> | ||
|
||
<!-- Section Contacto --> | ||
<section> | ||
|
||
</section> | ||
|
||
<!-- Section Footer --> | ||
<footer class="footer1"> | ||
<div class="grupo-1"> | ||
<div class="box"> | ||
<figure> | ||
<a href="#"> | ||
<img src="/imgs/UNVAL2.png" alt="logo de UVAL"> | ||
</a> | ||
</figure> | ||
</div> | ||
<div class="box"> | ||
<h2>SOBRE NOSOTROS</h2> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. | ||
facilis earum maxime ratione?</p> | ||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. | ||
Praesentium, nulla alias? Dolores!</p> | ||
</div> | ||
<div class="box"> | ||
<h2>SIGUENOS EN REDES</h2> | ||
<div class="red-social"> | ||
<a target="noopener" | ||
href="https://www.instagram.com/gio_sanx/?hl=es-es"><i | ||
class="fa-brands fa-square-instagram"></i></a> | ||
<a target="noopener" | ||
href="https://www.facebook.com/g2.giox1"><i | ||
class="fa-brands fa-square-facebook"></i></a> | ||
<a target="noopener" href="https://x.com/sandinoG1X"><i | ||
class="fa-brands fa-square-x-twitter"></i></a> | ||
<a target="noopener" | ||
href="https://github.com/GioX-16"><i | ||
class="fa-brands fa-square-github"></i></a> | ||
<a target="noopener" | ||
href="https://www.threads.net/@gio_sanx"><i | ||
class="fa-brands fa-square-threads"></i></a> | ||
<header class="header"> | ||
<div class="logo"> | ||
<img src="/imgs/AgroMps-2.png" alt="logo de la marca"> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="grupo-2"> | ||
<samp>© 2024 <b>UNI-VERSE-ALL</b> Todos los derechos | ||
Reservados</samp> | ||
</div> | ||
</footer> | ||
|
||
</body> | ||
<nav> | ||
<ul class="nav-links"> | ||
<li><a href="#home1">Inicio</a></li> | ||
<li><a href="#banner">Nosotros</a></li> | ||
<li><a href="#mapa">Mapas</a></li> | ||
<li><a href="#banner">Servicios</a></li> | ||
<li><a href="#">Contacto</a></li> | ||
</ul> | ||
</nav> | ||
<a class="btn" | ||
href="index3.html"><button>Login</button></a> | ||
</header> | ||
</section> | ||
|
||
<!-- SECTION video --> | ||
|
||
<section> | ||
<video autoplay loop muted> | ||
<source src="/Videos/VideoBackg.mp4" type="video/mp4"> | ||
Tu navegador no soporta la etiqueta de video. | ||
</video> | ||
</section> | ||
|
||
</body> | ||
</html> |