Hello Everyone,
Beautiful Buttons:
We can make Buttons in Bootstrap in two ways ( or more specifically, using two tags ). Firstly, with the tag and secondly by using the tag.
Button with ‘button’ tag
We can have Buttons in different colours using Bootstrap. Each having a specific name like btn-default, btn-primary, btn-success, btn-info, btn-warning, btn-danger and btn-link. All of them represent a specific colour of button.
We can also make buttons of different sizes ( by using btn-lg, btn-sm, btn-xs and btn-block attributes)
<a href=” “>Button with tag
Example:
<!DOCTYPE html>
<
html
lang
=
"en"
>
<
head
>
<
title
>Bootstrap Example</
title
>
<
meta
charset
=
"utf-8"
>
<
meta
name
=
"viewport"
content
=
"width=device-width, initial-scale=1"
>
<
link
rel
=
"stylesheet"
href
=
"https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css"
>
<
script
src
=
"https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"
></
script
>
<
script
src
=
"https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"
></
script
>
</
head
>
<
body
>
<
div
class
=
"container"
style
=
"color:green"
>
<
h1
>GeeksforGeeks</
h1
>
</
div
>
<
div
class
=
"container"
>
<
h2
>Button Styles</
h2
>
<
button
type
=
"button"
class
=
"btn"
>Basic</
button
>
<
button
type
=
"button"
class
=
"btn btn-default"
>Default</
button
>
<
button
type
=
"button"
class
=
"btn btn-primary"
>Primary</
button
>
<
button
type
=
"button"
class
=
"btn btn-success"
>Success</
button
>
<
button
type
=
"button"
class
=
"btn btn-info"
>Info</
button
>
<
button
type
=
"button"
class
=
"btn btn-warning"
>Warning</
button
>
<
button
type
=
"button"
class
=
"btn btn-danger"
>Danger</
button
>
</
div
>
<
br
>
<
div
class
=
"container"
>
<
h4
>Button with <
a
> and <
button
> tag</
h4
>
<
a
href
=
"https://ide.geeksforgeeks.org/tryit.php"
class
=
"btn btn-danger"
>
Button with <
a
> tag </
a
>
<
button
type
=
"button"
class
=
"btn btn-success"
>Button with <
button
> tag </
button
>
</
div
>
</
body
>
</
html
>
Gorgeous Glyphicons:
Glyphicons is a library of precisely prepared monochromatic icons and symbols, created with an emphasis to simplicity and easy orientation. We can use Glyphicons inside the span tag like this:
Glyphicons can also be used within buttons like this:
Example:
<!DOCTYPE html>
<
html
lang
=
"en"
>
<
head
>
<
title
>Bootstrap Example</
title
>
<
meta
charset
=
"utf-8"
>
<
meta
name
=
"viewport"
content
=
"width=device-width, initial-scale=1"
>
<
link
rel
=
"stylesheet"
href
=
"https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css"
>
<
script
src
=
"https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"
></
script
>
<
script
src
=
"https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"
></
script
>
</
head
>
<
body
>
<
div
class
=
"container"
style
=
"color:green"
>
<
h1
>GeeksforGeeks</
h1
>
</
div
>
<
div
class
=
"container"
>
<
p
>Correct<
span
class
=
"glyphicon glyphicon-ok"
></
span
></
p
>
<
p
>Incorrect<
span
class
=
"glyphicon glyphicon-remove"
></
span
></
p
>
<
h4
>Glyphicon with buttons</
h4
>
<
a
href
=
"https://www.geeksforgeeks.org"
class
=
"btn btn-primary"
>
<
span
class
=
"glyphicon glyphicon-backward"
></
span
>
</
a
>
<
a
href
=
class
=
“btn btn-danger”
>`
<
span
class
=
"glyphicon glyphicon-pause"
></
span
>
</
a
>
<
a
href
=
"https://"
class
=
"btn btn-success"
>
<
span
class
=
"glyphicon glyphicon-play"
></
span
>
</
a
>
<
a
href
=
"https://"
class
=
"btn btn-primary"
>
<
span
class
=
"glyphicon glyphicon-forward"
></
span
>
</
a
>
</
div
>
<
br
>
<
div
class
=
"container"
>
<
a
href
=
"https://"
class
=
"btn btn-primary"
>
<
span
class
=
"glyphicon glyphicon-thumbs-up"
></
span
>Like Button
</
a
>
</
div
>
</
body
>
</
html
>
Tantalizing Tables:
For creating tables, we need the tag within which we use tag to define each row and tag like
Similarly, you can also add colours to each cell by including the class of colours in the
/ | tag to represent actual data cell. In the table tag we can add different classes attributed to them which can make our table look better. Some of the table classes would be table-striped, table-bordered, table-hover, table-condensed, etc.
You can also add different colours to each row of the table using the colour in the |
|||
---|---|---|---|---|
tag. Example:
You’ll learn more of Bootstrap stuff in the next article. Keep Learning! |