"team"
Bootstrap 3.0.0 Snippet by evarevirus

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="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.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 section wraps the team members as a container-->
<section class="cf team-container">
<h1 class="team-h1">Our Team</h1>
<!-- member-->
<div class="team-member">
<img class="team-photo" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/44742/profile/profile-512_2.jpg">
<h3>Person's Name</h3>
<span>This section could be used to show a very short bio description for each member</span>
<a class="email" href="mailto:email@something.com"><span >email</span></a>
</div>
<!-- member-->
<div class="team-member">
<img class="team-photo" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/44742/profile/profile-512_2.jpg">
<h3>Person's Name</h3>
<span>This section could be used to show a very short bio description for each member</span>
<a class="email" href="mailto:email@something.com"><span >email</span></a>
</div>
<!-- member-->
<div class="team-member">
<img class="team-photo" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/44742/profile/profile-512_2.jpg">
<h3>Person's Name</h3>
<span>This section could be used to show a very short bio description for each member</span>
<a class="email" href="mailto:email@something.com"><span >email</span></a>
</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
/* Team Member CSS
===========================*/
h1.team-h1 {
margin: 0;
position: absolute;
top: -16px;
text-align: center;
left: 40%;
font-family: georgia;
font-style: italic;
background-color: white;
padding: 0px 20px;
color: #222;
}
.cf:before,
.cf:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.cf:after {
clear: both;
}
/**
* For IE 6/7 only
* Include this rule to trigger hasLayout and contain floats.
*/
.cf {
*zoom: 1;
}
.team-container {
max-width: 1000px;
margin: auto;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: