Created
December 10, 2015 18:45
-
-
Save rcaneppele/e18c19e16cd74dd3cc94 to your computer and use it in GitHub Desktop.
Header da Mirror Fashion com Flexbox
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> | |
<head> | |
<title>Mirror Fashion</title> | |
<meta charset="utf-8" /> | |
<link rel="stylesheet" href="css/reset.css" /> | |
<style> | |
.menu-opcoes li { | |
display: inline; | |
} | |
.container { | |
margin: 0 auto; | |
width: 940px; | |
min-height: 100%; | |
} | |
.sacola { | |
background: url(img/sacola.png) no-repeat top right; | |
width: 140px; | |
font-size: 14px; | |
text-align: right; | |
padding-right: 35px; | |
padding-top: 8px; | |
} | |
</style> | |
</head> | |
<body> | |
<header class="container"> | |
<h1> | |
<img src="img/logo.png" alt="Mirror Fashion"> | |
</h1> | |
<p class="sacola"> | |
Nenhum item na sacola de compras | |
</p> | |
<nav class="menu-opcoes"> | |
<ul> | |
<li><a href="#">Sua Conta</a></li> | |
<li><a href="#">Lista de Desejos</a></li> | |
<li><a href="#">Cartão Fidelidade</a></li> | |
<li><a href="sobre.html">Sobre</a></li> | |
<li><a href="#">Ajuda</a></li> | |
</ul> | |
</nav> | |
</header> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment