bootstrap-social is a CSS extension for Bootstrap, it can let you create some very beautiful social network buttons for you web applications.
Supported Social Networks:
- Adn
- Bitbucket
- Discord
- Dropbox
- Flickr
- Foursquar
- Github
- Microsoft
- Odnoklassniki
- Openid
- Soundcloud
- Tumblr
- Viadeo
- Vimeo
- Vk
- Yahoo
How to create social buttons using bootstrap-social?
1.Import Bootstrap and bootstrap-social style files
<link rel="stylesheet" href="/path/to/bootstrap.min.css"> <link rel="stylesheet" href="/path/to/bootstrap-social.css">
2. Use btn-social
and btn-socialName
classes to create buttons
<a class="btn btn-social btn-facebook"> <i class="fab fa-facebook-f"></i> Facebook </a> <a class="btn btn-social btn-google"> <img src="btn_google.svg"> Login via Google </a>
3.You also can use Font Awesome to set some social icons for buttons
<a class="btn btn-social-icon btn-facebook"> <i class="fab fa-facebook-f"></i> </a>