This page shows you how to create a button in HTML.
In html, there is two kind of button:
<input type="button" value="Click Me" />
<button>Click Me</button>
<div id="my-button" onClick="console.log('You clicked me')" >Click me</div>
#my-button {
padding: 10px 16px;
border: 1px solid;
border-radius: 6px;
background-color: #31b0d5;
color: white;
text-align: center;
display: inline-block;
font-size:18px;
}
http://getbootstrap.com/css/#buttons
Use the button classes on an a, <button>, or input element.
Class:
<button type="button" class="btn btn-info btn-lg mb-3" onclick="console.log('ouch !');">Click me</button>
When using a button in a list of action, you want it styled mostly as an anchor (hyperlink)
Example:
button {
display: inline;
border: 0;
color: inherit;
font: inherit;
line-height: normal;
overflow: visible;
padding: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
with the following HTML
<p>
<a href="#">A link</a> and a <button>button</button> in a paragraph
</p>
will render as: