"profile view with social links"
Bootstrap 3.3.0 Snippet by itsrifat

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!--This stylesheet should be moved to the head of the document -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<div class="container">
<div class="row">
<div class=" col-lg-offset-3 col-lg-6">
<div class="panel panel-default">
<div class="panel-body">
<div class="row">
<div class="col-lg-12">
<div class="row">
<div class="col-sm-offset-3 col-sm-6 col-md-offset-3 col-md-6 col-lg-offset-3 col-lg-6">
<img class="img-circle img-responsive" src="http://api.adorable.io/avatars/300/abott@adorable.png">
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="row">
<div class="centered-text col-sm-offset-3 col-sm-6 col-md-offset-3 col-md-6 col-lg-offset-3 col-lg-6">
<div itemscope="" itemtype="http://schema.org/Person">
<h2> <span itemprop="name">Your Name</span></h2>
<p itemprop="jobTitle">Your Position</p>
<p><span itemprop="affiliation">Your Company</span></p>
<p>
<i class="fa fa-map-marker"></i> <span itemprop="addressRegion">Your City, Your State</span>
</p>
<p itemprop="email"> <i class="fa fa-envelope">·</i> <a href="mailto:you@somedomain.com">you@somedomain.com</a> </p>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css")
.social-btn-holder{
padding:10px;
margin-top:5px;
margin-bottom:5px;
}
.social-btn-holder .btn-social{
font-size:12px;
font-weight:bold;
}
.btn-social{
color: white;
opacity:0.9;
}
.btn-social:hover {
color: white;
opacity:1;
}
.btn-facebook {
background-color: #3b5998;
}
.btn-twitter {
background-color: #00aced;
}
.btn-linkedin {
background-color:#0e76a8;
}
.btn-github{
background-color:#000000;
}
.btn-google {
background-color: #c32f10;
}
.btn-stackoverflow{
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: