Saturday, February 25, 2012

For beginners CSS / HTML

vim  /html/webCSS1.html
vim /html/style/style.css 


file - webCSS1.html


<html>
    <head>
        <title> Metodo 3 </title> 
        <link rel="stylesheet" type="text/css" href="style/style.css" />    
    </head>


    <body>
        <h1>Using css style</h1> 
    </body>
</html>

file - style.css 


body{
    background-color : #B0E2FF;
}

open the file "webCSS1.html" in your browser.
see your page .
=)

0 comentários:

Post a Comment