Skip to content

Instantly share code, notes, and snippets.

@asssis
Created November 27, 2018 15:57
Show Gist options
  • Save asssis/5dd1b849adf1f0d7763163a8a21c6162 to your computer and use it in GitHub Desktop.
Save asssis/5dd1b849adf1f0d7763163a8a21c6162 to your computer and use it in GitHub Desktop.
Cabeçalho e Rodapé
<!DOCTYPE html>
<html>
<head>``
<style>
body {
background-color: #CCC;
margin:48px 0px 0px 64px;
}
div#header {
position:fixed;
top:0px;
left:0px;
width:100%;
color:#CCC;
background:#333;
padding:8px;
text-align:center;
}
div#footer {
position:fixed;
bottom:0px;
left:0px;
width:100%;
color:#CCC;
background:#333;
padding:8px;
}
</style>
</head>
<body>
<div id="header">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/Bras%C3%A3o_de_Rond%C3%B4nia.svg/220px-Bras%C3%A3o_de_Rond%C3%B4nia.svg.png" alt="Smiley face" height="42" width="42">
</div>
<div id="footer">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/Bras%C3%A3o_de_Rond%C3%B4nia.svg/220px-Bras%C3%A3o_de_Rond%C3%B4nia.svg.png" alt="Smiley face" height="42" width="42">
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment