Creio que seja um problema simples, já vi vários tutoriais, mas não consegui resolver.  •  Imagem  Fiz em GIF, JPEG e PNG. Vale ressaltar que não estou usando o link postado, mas 'linkei' direto do computador, coloquei tudo numa pasta só.  •  XHTML  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- HEAD -->
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Index</title>
    <link rel="stylesheet" type="text/css" href="css/style.css" />
  </head>
<!-- /HEAD -->
<!-- BODY -->  
  <body>
    <div id="menu">
      <ul>
        <li><a href="#">Home </a></li>
        <li><a href="#">Quem Somos </a></li>
        <li><a href="#">Carros </a></li>
        <li><a href="#">Montadoras </a></li>
        <li><a href="#">Contato</a></li>
      </ul>
    </div>
    <div id="colcenter">
      <div id="content">
      </div>
    </div>  
  </body>
<!-- /BODY -->
</html>
•  CSS
/*CSS Doctype*/
/*Declaração geral de espaçamentos (servirá pricipalmente para que o menu não fique separado da coluna central)*/
* {
margin: 0;
padding: 0;
list-style: none;
}
/*Aplicação incial à coluna central ('text-align') e plano de fundo*/
body {  
text-align: center;
background: #333;
}
/*Coluna Central - caixa e conteúdo*/
#colcenter{
width: 974px;  
margin: 0 auto;      
text-align: left;
}
#content {
height: 2000px;
padding: 20px;
background-color: #fff;
}
/*Menu horizontal*/
#menu{
height: 49px;
background: url('menu_bg.gif') repeat-x;
}
ul {
list-style-type: none;
}
ul li {
display: inline;
}
ul li a{
text-decoration: none;
} Nenhum problema no LINK da CSS.