<!DOCTYPE html>    
<html>    
    
<head>    
    <title>   
        Warna latar belakang tombol
    </title>   
        
    <style>   
    body{  
       text-align: center;  
    }  
        button {  
           color:lightgoldenrodyellow;  
            font-size: 30px;   
        }   
        .b1 {   
            background-color: red;   
            border:none;  
        }   
        .b2 {   
            background-color: blue;   
            border:5px brown solid;  
            border-radius: 7px;  
        }   
        .b3 {   
            background-color: yellow;   
            color:black;  
            border:5px red groove;  
            border-radius: 10px;  
        }   
        .b4{  
           background-color:orange;  
           border: 5px red dashed;  
           border-radius: 20px;  
        }  
        .b5{  
           background-color: gray;  
           border: 5px black dotted;  
           border-radius: 30px;  
        }  
        .b6{  
           background-color: lightblue;  
           border:5px blue double;       
           border-radius: 25px;  
        }  
    </style>   
</head>   
    
<body>    
   <h1>Property border-radius</h1>  
   <h2>Dibawah ini adalah nama border dan border-radius</h2>  
    <button class="b1">none</button>   
    <button class="b2">solid 7px</button>   
    <button class="b3">groove 10px</button> 
    <button class="b4">dashed 20px</button> 
    <button class="b5">dotted 30px</button> 
    <button class="b6">double 25px</button> 
  
</body>    
</html>

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.