Tuesday 16 February 2016

different style buttons in html...

<!DOCTYPE html>
<html>
<head>
<style>
.button {
    background-color: pink; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}


.button2 {font-size: 12px;}
.button5 {font-size: 24px;}
</style>
</head>
<body>

<h2>Button Sizes</h2>

<button class="button button2">12px</button>
<button class="button button5">24px</button>

</body>
</html>




OUTPUT: