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:
- 97 Useful Notepad++ Keyboard Shortcuts - NotepadPlusPlus
- How to save IntelliJ IDE Console logs to external log file - Android-Studio
- [Fix] Modern authentication failed here, but youll still be able to sign in. Your status code is 4c7 - Microsoft Teams - Teams
- Change Android EditText Cursor Height - Android
- Quick steps to install Nginx on Ubuntu Linux - Ubuntu
- Update SharePoint Online List Item using REST API, HTML, Spfx, Postman - SharePoint
- Submit html form on dropdown menu value selection or change using javascript - JavaScript
- How to make jsfiddle bootstrap ready - CSS