Fala galera, beleza?
Sou iniciante em dev. web, e estou fazendo um pequeno “site” para aprender.
Minha duvida é a seguinte, estou tentando utilizar um css para minha index.vm porém não estou conseguindo, ele não rola por nada…
Segue parte de minha index que chama o .css:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type ="text/css" href="stylesheet/layout.css" />
<meta http-equiv="Context-Type" content="text/html; charset=utf-8" />
</head>
<body>
Meu SRC:
Meu .css:
* {
margin: 0;
padding: 0;
outline-style: none;
text-decoration: none;
list-style-type: none;
border-collapse: collapse;
}
html, body {
height: 100%;
}
body {
background: url("../image/body-bg.png") repeat-x;
text-align: center;
font-family: "Courier New", "Lucida Console", Arial, "Times New Roman";
font-size: 14px;
}
Muito obrigado galera!