Link Button Border

  • Post category:CSS

Get the code of Link Button Border and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<a href="https://wikipedia.org">Link Button</a> 
a {
  text-decoration: none;
  border: 2px solid red;
  padding: 5px 20px;
  color: black;
  font-size: 25px;
}