How do you create a button using Bootstrap?

Experience Level: Junior
Tags: Bootstrap 4

Answer

In order to create a button using Bootstap, place a tag <button> or <a> or <input> to the web page source code and give it class btn.

Like this:

Button that uses <button> tag
<button class="btn">Click me</button>
or
Button that uses <a> tag
<a class="btn">Click me</a>
or
Button that uses <input> tag
<input type="button" class="btn" value="Click me" />
or
Button that uses <input> tag
<input type="reset" class="btn" value="Click me to Reset" />
or
Button that uses <input> tag
<input type="submit" class="btn" value="Click me to Submit" />

Comments

No Comments Yet.
Be the first to tell us what you think.
Bootstrap for beginners
Bootstrap for beginners

Are you learning Bootstrap ? Try our test we designed to help you progress faster.

Test yourself