Filter (Advanced Search)
Downloads
1
Views
282
Video

Video is not available... Embedded is previous playlist.

Details

A link can also be styled as a button, by using CSS:

Example

<style>
a:link, a:visited {
  background-color: #f44336;
  color: white;
  padding: 15px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  background-color: red;
}
</style>


<!DOCTYPE html>
<html>
<head>
<title>Link Button</title>
</head>
<body>

<h2>Link Button</h2>
<p>A link styled as a button:</p>
<a href="https://www.gssskhokhar.com/html/" target="_blank">HTML Tutorial</a>

</body>
</html>



Ad