Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

teste

<!DOCTYPE html>
<html>
<title>Web Page Design</title>
<head>
    
<style>


body {
    background-color:   #CCCCCC;
}

.botao 
{
    background-color:   blue;
    color:              #FFFFFF;
    font-family:        arial;
    width:              100px;
    padding:            10px;
    margin-top:         50px;
    text-align:         center;
    border-radius:      5px;
    margin:             0 auto;
    margin-top:         10px;

}

.salvar:hover {
        background-color: green;
        cursor:           pointer; 
}

.menu {
    font-family:            arial;
    
    
              
}

.menu li 
{
    display:                inline;
    margin-top:             0px;   
    margin-left:            15px;
    background-color:       blue;
    padding:                10px;
    margin-bottom:          10px;
    color:                  #FFFFFF;
    margin-top:             0px;
}


.menu li:hover 
{
        background-color: #FFFFFF;
        color:            #000000;
        cursor:           pointer;
}

</style>
</head>

<body>

<ul class="menu">
    
    <li>Home    </li>
    <li>Serviços</li>
    <li>Contato</li>
    
</ul>

<br><br>

<hr>

    
    
    

</body>
</html>

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.