HTML
<!doctype html> <head> <meta http-equiv="Content-Type" content="text/html"; charset=UTF-8" /> <title>Awesome Website from CSS-tricks</title> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body> <ul id="nav"> <li></li> </ul> </body> </html>
CSS
* {
margin: 0;
padding: 0;
}
body {
font-size: 62.5%;
font-family: Helvetica, sans-serif;
background: url(images/body-bg.png) repeat-x top #f5ecd4;
}
#nav {
height: 336px;
width: 800px;
margin: 0 auto;
background: url(images/header-bg.jpg) no-repeat;
}
I have also attached the edited image file


Sign In
Create Account


Back to top









