
Flat Button Design CSSIn modern web design, flat design has easily become a trend because it is really simple, elegant, professional and easy to implement in responsive designs. They are commonly used in login forms, register forms or even in control forms that needs data submission.
In this post, we'll make a flat button design using using purely CSS!
Step 1: Create your button inside the <body> tag
<body>
<input type='button' class='Green' value='Green'>
</body>
Step...