Created
September 14, 2022 21:19
-
-
Save pochitax/d3cf307e756c95d1397b6e7b940b51eb to your computer and use it in GitHub Desktop.
Ejercicio One page
This file contains hidden or 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
<!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>Proyecto Landing Page</title> | |
<link rel="stylesheet" href="assets/css/style.css"> | |
<!-- fuente --> | |
<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=Montserrat:wght@300;400;700&display=swap" rel="stylesheet"> | |
</head> | |
<body> | |
<!-- encabezado --> | |
<header> | |
<div class="container"> | |
<div class="row"> | |
<h1 class="logo"><a href="#">Logo</a></h1> | |
<nav class="header-menu"> | |
<ul> | |
<li class="active"><a href="#">Home</a></li> | |
<li><a href="#">About</a></li> | |
<li><a href="#">Team</a></li> | |
<li><a href="#">Portfolio</a></li> | |
<li><a href="#">Contact</a></li> | |
</ul> | |
</nav> | |
</div> | |
</div> | |
</header> | |
<!-- contenido general // cuerpo --> | |
<main> | |
<!-- We Build Awesome Wireframe --> | |
<section class="background-blue"> | |
<div class="container"> | |
<div class="row"> | |
<div class="column"> | |
<h2>We Build Awesome Wireframe</h2> | |
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatem, aut.</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- About us --> | |
<section> | |
<div class="container"> | |
<div class="row"> | |
<div class="column"> | |
<h2>About us</h2> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Our Team --> | |
<section class="background-gray"> | |
<div class="container"> | |
<div class="row"> | |
<div class="column"> | |
<h2>Our Team</h2> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Portfolio --> | |
<section> | |
<div class="container"> | |
<div class="row"> | |
<div class="column"> | |
<h2>Portfolio</h2> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Contact --> | |
<section class="background-gray"> | |
<div class="container"> | |
<div class="row"> | |
<div class="column"> | |
<h2>Contact</h2> | |
</div> | |
</div> | |
</div> | |
</section> | |
</main> | |
</body> | |
</html> |
This file contains hidden or 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
* { | |
box-sizing: border-box; | |
margin: 0; | |
padding: 0; | |
} | |
body { | |
font-family: 'Montserrat', sans-serif; | |
} | |
/* modelo contenedor, fila y columna */ | |
/* container es contenedor en inglés */ | |
.container { | |
margin: 0 auto; | |
width: 1170px; | |
} | |
/* row es fila en inglés */ | |
.row { | |
display: flex; | |
} | |
/* column es columna en inglés */ | |
.column { | |
display: block; | |
text-align: center; | |
width: 100%; | |
} | |
/* estilos del header */ | |
header { | |
background-color: #2c3e50; | |
height: 70px; | |
display: flex; | |
align-items: center; | |
border-bottom: 1px solid #253342; | |
} | |
header .row { | |
justify-content: space-between; /* espacio entremedio */ | |
align-items: center; | |
} | |
.header-menu a { | |
color: #7e95ae; | |
margin: 0 20px; | |
text-decoration: none; | |
font-size: 15px; | |
} | |
.header-menu .active a, .header-menu a:hover, .logo a { | |
color: #fff; | |
text-decoration: none; | |
} | |
.header-menu ul li { | |
display: inline; | |
} | |
.logo { | |
font-size: 30px; | |
font-weight: bold; | |
text-transform: uppercase; | |
} | |
/* main */ | |
.background-blue { | |
background-color:#2c3e50; | |
color: #fff; | |
} | |
.background-blue h2 { | |
color: #fff; | |
} | |
.background-gray { | |
background-color: #eeeeee; | |
} | |
section { | |
padding: 30px 0; | |
text-align: center; | |
} | |
h2 { | |
font-size: 45px; | |
font-weight: 300; | |
color: #6b6b6b; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment