Created
June 1, 2016 12:53
-
-
Save troke12/23f3960200c7f7c344f7e277213c1eb2 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>Test</title> | |
<style media="screen"> | |
body { | |
margin: 0; | |
background: #000000 url(images/background.jpg) no-repeat top; | |
font: normal medium "Verdana", Arial, Helvetica, sans-serif; | |
} | |
.header{ | |
width: 693px; | |
height: 170px; | |
margin: 0; | |
background: url(images/bghead.png) bottom right no-repeat; | |
} | |
.content{ | |
width: 693px; | |
margin: 0 auto; | |
height: 500px; | |
background: url(images/bgcon.png); | |
} | |
.container{ | |
padding: 10px; | |
} | |
.footer{ | |
width: 693px; | |
height: 49px; | |
margin: 0 auto; | |
background: url(images/bgfoot.png) bottom right no-repeat; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="header"></div> | |
<div class="content"> | |
<div class="container"></div> | |
</div> | |
<div class="footer"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment