Bootstrap icons



https://i.ytimg.com/vi/aSz5chzgLRM/hqdefault.jpg



how to use bootstrap glyphicons
using glyphicons with bootstrap
bootstrap icons example
bootstrap glyphicons
bootstrap glyphicons example
bootstrap search icon button
bootstrap button with icon and text
bootstrap button glyphicon right
bootstrap button glyphicon color
bootstrap button glyphicon spacing
bootstrap button icon only

In this video we will discuss using Glyphicons with Bootstrap

Bootstrap icons are
Provided by Glyphicons
There are over 250 glyphs
As glyphicons are font based, their colour and size automatically adjusts to the element colour and size on which it is being used

Here is the bootstrap link where you can find the full list of Glyphicons
http://getbootstrap.com/components/#glyphicons

How to use bootstrap glyphicons
Using these icons is very easy. All you have to do is include a span element with it’s class attribute set to the name of the icon.

Link for slides, code samples and text version of the video
http://csharp-video-tutorials.blogspot.com/2016/06/bootstrap-icons.html

Link for all dot net and sql server video tutorial playlists
https://www.youtube.com/user/kudvenkat/playlists?sort=dd&view=1

Original source


22 responses to “Bootstrap icons”

  1. if any one is using bootstrap 3.x.x version, then use the below lines in your code
    <link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css" rel="stylesheet" />
    <button><span class="glyphicon glyphicon-search"></span>Search</button>

    if any one is using bootstrap 4.x.x version. then use the below lines in your code
    <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
    <button class="btn btn-primary"><i class="fa fa-search" aria-hidden="true"></i>Search</button>

  2. * My question isn't related to this video as its a new upload so you might see it quick *
    Sorry the question is a little long please if you have time clear my confusion!
    Sir, I've this confusion about search engines. for example we have a blog developed on asp.net
    All the posts are stored in the database [Post , TITLE,SUBJECT,CONTENT,DATE,COMMENTS,TAGS]
    right everything stores in the database, and shows up on webpage when some events fire.. like on webpage we have a category and under categories we have different post titles so when we click on post title request goes to database comes back with particular post data and shows on webpage
    So the confusion is here
    How will search engine will search posts that are in database, there won't fire any event.
    Second search engine search the tags and keywords in metadata tag, meta tags, the title etc
    So does this work ..
    Will it be alright to just develop a blog will search engine find automatically even its in database?

Leave a Reply