In Bootstrap we can make a button have various colors by setting various class types e.g. : btn btn-info, btn btn-primary etc.
We can also make a button look like a link (an anchor tag) using the class btn btn-link,
Let's see an example :
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap : Button as link</title>
<meta charset="utf-8">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head>
<body>
<button type="button" class="btn btn-link">This is a button, but looks like a link</button>
</body>
</html>
Output :

button as link output
More Posts related to Bootstrap,
- How to disable button in Bootstrap
- Bootstrap tooltip not working
- Bootstrap Button Colors Classes
- Rounded Images in Bootstrap framework
- Right Align Text in Bootstrap framework
- How to add hint text in bootstrap input text field and text area
- Create Bootstrap carousel slider with Text
- Bootstrap Nav Menu Dropdown on hover
- [Solved] Bootstrap tooltip not working
- Align left align text in Bootstrap
More Posts:
- How to List all Packages installed using pip [Python] - Python
- Android App Showing Two Toolbars Issue fix - Android
- [Solved] SharePoint Access Denied error editing Document Name - SharePoint
- Install Native Golang on M1/M2 ARM based Mac - MacOS
- Fetch More then 10 Links Per Page in Google Search Result - Google
- git command to remove/unstage files from staging area - Git
- How to create volume in Docker using Command - Docker
- How to Install MongoDB in VSCode - HowTos