Basic rounded corner button to add to your website
- Web Coding

 - Oct 8, 2020
 - 1 min read
 
Today I will be teaching you how to create a basic rounded corner button for your website using only HTML and CSS
HTML
<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <title>Document</title>
 <link rel="stylesheet" href="style.css">
</head>
<body>
 <button>Click Me</button>
</body>
</html>CSS
*{
 padding: 0;
 margin: 0;
}
body{
 min-height: 100vh;
 display: flex;
 align-items: center;
 justify-content: center;
 background-color: #0B0C10;
}
button{
 height: 20vh;
 width: 40vh;
 font-size: 8vh;
 background-color: #116466;
 border: none;
 color: #D1E8E2;
 border-radius: 5px;
 outline: none;
 cursor: pointer;
 border-radius: 10vh;
}
button:hover{
 filter: brightness(85%);
}If you found this blog post helpful don’t forget to check out my other projects and if you want more content follow me on
YouTube: https://www.youtube.com/channel/UC2nxqB2usQIS2c8zwVZKWEQ
Instagram: https://www.instagram.com/coding_for_the_web/
Twitter: https://twitter.com/LearnWebCoding



Comments