Bootstrap snippet and html example. User profile background

This html snippet was created to help web designers, web developers, front-end and back-end developer save time. Use it for free in your project and build your app faster, You can also download the HTML, CSS, and JS code.
Tags: bootstrap,snippet,user,profile,options

HTML code

This is the html code used to create this bootstrap snippet, You can copy and paste the following html code inside a page with bootstrap 3.2.0 included, to get the result that you can see in the preview selection

                        
<link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css">
<div class="em-background-box text-white content">
  <div class="container">
    <div class="text-center em-background-box-content">
      <ul class="list-inline">
        <li>
          <a href="#" class="tip" title="Add friend">
            <i class="glyphicon glyphicon-plus line-icon-circle"></i>
          </a>
        </li>
        <li>
          <img class="img-circle img-em-border" src="https://bootdey.com/img/Content/user_1.jpg">
        </li>
        <li>
          <a href="#" class="tip" title="Send message">
            <i class="line-icon glyphicon glyphicon-comment line-icon-circle"></i>
          </a>
        </li>
      </ul>

      <h1 class="thin">Deyson Bejarano</h1>
      <h4>
        <i class="fa fa-map-marker"></i>
        <span class="thin">Medellin, Colombia</span>
      </h4>

      <div class="row">
        <div class="col-md-10 col-md-offset-1">
          <div class="semi-well-dk em-background-box-actions">
            <div class="row">
              <div class="col-md-7 push-bottom-sm">
                <ul class="list-inline no-margin v-mid-row">
                  <li>
                    <a href="#" class="tip" title="Option">
                      <img class="img-circle" src="https://bootdey.com/img/Content/icons/32/PNG/32/rocket.png">
                    </a>
                  </li>
                  <li>
                    <a href="#" class="tip" title="Option">
                      <img class="img-circle" src="https://bootdey.com/img/Content/icons/32/PNG/32/packman.png">
                    </a>
                  </li>
                  <li>
                    <a href="#" class="tip" title="Option">
                      <img class="img-circle" src="https://bootdey.com/img/Content/icons/32/PNG/32/cloud-up.png">
                    </a>
                  </li>
                  <li class="text-center">
                    <h5 class="base-header">Followers</h5>
                    <h4 class="base-header major">4.884</h4>
                  </li>
                </ul>
              </div>

              <div class="col-md-5">
                <ul class="list-inline">
                  <li class="option">
                    <img class="img-circle" src="https://bootdey.com/img/Content/icons/32/PNG/32/clock.png">
                  </li>
                  <li class="text-center">
                    <h5 class="base-header">Sales</h5>
                    <h4 class="base-header major">$3.593</h4>
                  </li>
                  <li  class="option">
                    <img class="img-circle" src="https://bootdey.com/img/Content/icons/32/PNG/32/photo.png">
                  </li>
                  <li class="text-center">
                    <h5 class="base-header">Followers</h5>
                    <h4 class="base-header major">+84</h4>
                  </li>
                </ul>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>                    

CSS code

This is the css code used to create this bootstrap snippet, You can copy and paste the following css code inside a page with bootstrap 3.2.0 included, to get the result that you can see in the preview selection

                        
.content{
    background-image: url(https://www.bootdey.com/image/1100x500/FFB6C1/000000);
}
.list-inline .option{
  width: 80px; height: 30px;  
}
.major {
    font-weight: 600;
}
.base-header {
    margin-top: 0;
    margin-bottom: 0;
    line-height: inherit;
}
.em-background-box .em-background-box-actions {
    margin-top: 15px;
    min-height: 50px;
}
.semi-well-dk {
    background: rgba(0,0,0,0.3);
    color: #fff;
}
.semi-well-dk, .semi-well-lt {
    border-radius: 6px;
    padding: 20px;
}
.img-em-border {
    border: 8px solid rgba(255,255,255,0.3);
}
.img-circle {
    border-radius: 50%;
}
img {
    vertical-align: middle;
}
.line-icon-circle {
    border: 1px solid rgba(242,244,248,0.7);
    border-radius: 50%;
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    color: #fff;
    -webkit-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

.thin {
    font-weight: 300;
}
h1, .h1 {
    font-size: 33px;
}
.list-inline {
    margin-left: -5px;
}
.list-unstyled, .list-inline {
    padding-left: 0;
    list-style: none;
}
ul, ol {
    margin-top: 0;
    margin-bottom: 10px;
}
.em-background-box .em-background-box-content {
    position: relative;
    z-index: 2;
}
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 10px;
    padding-right: 10px;
}
.navbar+.em-background-box {
    margin-top: -15px;
    margin-bottom: 15px;
}
.em-background-box {
    border-bottom: 4px solid #5bc0de;
}
.em-background-box {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}
.text-white {
    color: white;
}                    

Javascript/Jquery code

This is the javascript code used to create this bootstrap snippet, You can copy and paste the following javascript code inside a page with bootstrap 3.2.0 included, to get the result that you can see in the preview selection

                        
$(function(){
 $('.tip').tooltip();
});                     

Similar snippets

Bootstrap example and template. profile with left cover

profile with left cover

Bootstrap example and template. Profile history

Profile history

Bootstrap example and template. Profile Followers Page

Profile Followers Page

Bootstrap example and template. bs4 profile with messages and edit

bs4 profile with messages and edit

Bootstrap example and template. bs5 dark footer

bs5 dark footer

Bootstrap example and template. WhatsUp Messenger

WhatsUp Messenger

Bootstrap example and template. bs5 edit profile account details

bs5 edit profile account details

Bootstrap example and template. profile with team section

profile with team section

Bootstrap example and template. User profile background

About this bootstrap example/template

We hope you will enjoy this awesome snippet and stay tuned for the latest updates, bootdey snippets are already used in thousands of blogs, websites and projects. We believe it will save your precious time and gives trendy look to your next web project.

We always try to offer the best beautiful and responsive source of Bootstrap code examples and components.

This code example currectly have 10.1K views, Using this bootstrap snippet you have the following benefits:

Bootstrap 3.2.0

<link rel='stylesheet' href='https://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css'>

<script src='https://netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js'></script>

This code example is based on bootstrap 3.2.0 and the grid system of this framework

Responsive

Based on bootstrap framework makes all the layouts perfectly responsive for all devices

Crossbrowser compatibility

Tested on all major browsers, it works smoothly on all of them

Jquery plugins

Great built-in plugins with jquery framework, you can easy to change all declarations

semantic html 5

Built on html / css3 the code quality is really amazing

Simple Integration

This code example can be simply integrated on existing sites and new ones too, all you need to do is copy the code and start working