Bootstrap snippet and html example. V card presentation

Bootstrap 3.3.1 snippet "V card presentation" with HTML, CSS, and JS. Copy, paste, and customize this responsive UI component for your project.
Tags: bootstrap,snippet,v card,presentation,image,vitae

HTML code

Clean, semantic HTML that powers this Bootstrap 3.3.1 snippet. Copy and paste it into your page (with Bootstrap loaded) to reproduce the exact layout shown in the preview.

                        

                        
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<div class="v-card">
	<!-- Header -->
	<header>
		<ul class="list-inline">
			<li class="active"><a href="#home" data-toggle="tab">Home</a></li>
			<li class=""><a href="#qualification" data-toggle="tab">Qualification</a></li>
		</ul>
	</header>
	<!-- tab Content -->
	<div class="tab-content">
		<!-- Tab Pane - Home -->
		<div class="tab-pane fade active in" id="home">
			<!-- Home Image -->
			<div class="vcard-img">
				<a href="#"><img src="https://bootdey.com/img/Content/avatar/avatar7.png" alt="" class="img-responsive img-thumbnail"></a>
			</div>
			<div class="vcard-content">
				<!-- Name -->
				<h4>Peter Frank <small>Web Designer</small></h4>
				<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua quis nostrud exercitation ullamco laboris.</p>
				<!-- Social media links -->
				<div class="brand-bg">
					<a href="#" class="facebook b-tooltip" title="" data-original-title="Facebook"><i class="fa fa-facebook square-2 rounded-1"></i></a>
					<a href="#" class="twitter b-tooltip" title="" data-original-title="Twitter"><i class="fa fa-twitter square-2 rounded-1"></i></a>
					<a href="#" class="google-plus b-tooltip" title="" data-original-title="Google Plus"><i class="fa fa-google-plus square-2 rounded-1"></i></a>
					<a href="#" class="linkedin b-tooltip" title="" data-original-title="LinkedIn"><i class="fa fa-linkedin square-2 rounded-1"></i></a>
					<a href="#" class="pinterest b-tooltip" title="" data-original-title="PInterest"><i class="fa fa-pinterest square-2 rounded-1"></i></a>
				</div>
				<hr>
				<!-- Skills -->
				<h4>Skills <small>Stuffs I Know</small></h4>
				<span class="label label-red">HTML 5</span>
				<span class="label label-green">CSS 3</span>
				<span class="label label-lblue">JQUERY</span>
				<span class="label label-blue">.NET</span>
				<span class="label label-orange">JAVA</span>
				<span class="label label-yellow">Testing</span>
				<span class="label label-purple">JavaScript</span>
				<span class="label label-rose">Photoshop</span>
				<span class="label label-brown">PHP</span>
				<span class="label label-red">C#.net</span>
			</div>
			<!-- Clearfix -->
			<div class="clearfix"></div>
		</div>
		
		<!-- Tab Pane - Education & Experience -->
		<div class="tab-pane fade" id="qualification">
			<div class="education">
				<h4><i class="fa fa-graduation-cap color"></i> Education</h4>
				<hr>
				<div class="row">
					<div class="col-md-6 col-sm-6">
						<div class="education-item">
							<!-- Eudcation detail and year -->
							<h5>B.E (Computer Science) <small>2006-2010</small></h5>
							<p>At vero eos et accusamus odio dignissimos voluptatum et iusto odio dignissimos voluptatum deleniti atque corrupti quos.</p>
						</div>
					</div>
					<div class="col-md-6 col-sm-6">
						<div class="education-item">
							<h5>MCA (Computer Application) <small>2010-2012</small></h5>
							<p>At vero eos et accusamus odio dignissimos voluptatum et iusto odio dignissimos voluptatum deleniti atque corrupti quos.</p>
						</div>
					</div>
				</div>
			</div>
			<hr>
			<div class="experience">
				<h4><i class="fa fa-database color"></i> Experience</h4>
				<hr>
				<div class="row">
					<div class="col-md-6 col-sm-6">
						<!-- Experience Detail -->
						<div class="experience-item">
							<!-- Experience detail and year -->
							<h5>Programmer - AshoApps <small>2012-2013</small></h5>
							<p>At vero eos et accusamus odio dignissimos voluptatum et iusto odio dignissimos voluptatum deleniti atque corrupti quos.</p>
						</div>
					</div>
					<div class="col-md-6 col-sm-6">
						<!-- Experience Detail -->
						<div class="experience-item">
							<h5>Developer - Rage Solution <small>2013-2014</small></h5>
							<p>At vero eos et accusamus odio dignissimos voluptatum et iusto odio dignissimos voluptatum deleniti atque corrupti quos.</p>
						</div>
					</div>
				</div>
			</div>
		</div>
	</div>
</div>                                        

CSS code

Scoped CSS that styles the component. Paste it after Bootstrap 3.3.1 to keep the design, spacing, and responsiveness consistent.

                        

                        
body{
    background: url(https://bootdey.com/img/Content/bg1.jpg) 0 0/cover fixed,url(https://bootdey.com/img/Content/bg1.jpg) 0 0/cover fixed;    
}

.color {
    color: #32c8de !important;
}

.v-card header ul li.active a {
  background: #32c8de;
  border-color: #1faabe;
}
.v-card header ul li.active a:hover {
  background: #32c8de;
}
.v-card header ul li a:hover {
  background: #32c8de;
  border-color: #1faabe;
  color: #ffffff;
}

a {
  color: #1faabe;
}
a:hover {
  color: #32c8de;
}

.v-card {
    max-width:700px;
	margin:0 auto;
	margin-top:100px;
	background:#fff;
	padding:30px;
	box-shadow:0px 0px 10px rgba(0, 0, 0, 0.2);
	border-radius:4px;
	margin-bottom:50px;
}
@media (max-width: 767px){
	.v-card {
		max-width:500px;
		margin-top:50px;
	}
	.v-card  header ul{
		text-align:center;
	}
}
.v-card header ul.list-inline,
.v-card  header ul li{
	margin:0px;
	padding:0px;
}
.v-card  header ul li a{
	display:inline-block;
	padding:6px 15px;
	color:#999;
	background:#fff;
	border:1px solid #f3f3f3;
	border-radius:2px;
	font-size:13px;
}
@media (max-width: 541px){
	.v-card  header ul li a{
		padding:5px 8px !important;
		margin-bottom:10px !important;
	}
}
@media (max-width: 767px){
	.v-card  header ul li a{
		padding:5px 10px;
	}
}
.v-card  header ul li.active a{
	color:#fff;
}
.v-card hr{
	margin:7px 0px;
}
.v-card .tab-content{
	margin-top:5px;
}
.v-card .vcard-img{
	float:left;
	max-width:200px;
	margin-top:8px;
}
@media (max-width: 767px){
	.v-card .vcard-img{
		float:none;
		max-width:150px;
		margin:0 auto;
		margin-bottom:20px;
	}
}
.v-card .vcard-content {
	margin-left:220px;
}
@media (max-width: 767px){
	.v-card .vcard-content {
		margin-left:0px;
		text-align:center;
	}
}
.v-card .brand-bg{
	margin:10px 0px;
}
.v-card .label{
	display:inline-block;
	margin-right:4px;
	margin-bottom:4px;
}
.v-card .education-item,
.v-card .experience-item{
	margin:5px 0px;
}
.v-card .portfolio{
	margin:5px 0px;
}
@media (max-width:767px){
	.v-card .portfolio{
		text-align:center;
	}
}
.v-card .portfolio img{
	max-width:150px;
	margin-right:7px;
	margin-bottom:5px;
	margin-top:5px;
}
.v-card form{
	margin-top:10px;
}
.v-card .map iframe{
	width:100%;
	height:170px;
	padding:3px;
	border:1px solid #ddd;
	margin-bottom:5px;
	border-radius:3px;
}
@media (max-width: 767px){
	.v-card .map{
		margin-top:30px;
	}
}
.v-card .contact-detail p{
	line-height:40px;
}
.v-card .contact-detail p i{
	width:30px;
	height:30px;
	line-height:30px;
	text-align:center;
	border-radius:100px;
	font-size:13px;
	color:#fff;
	margin-right:10px;
}                                        

Similar snippets

Bootstrap example and template. Nesting Columns image

Nesting Columns image

Bootstrap example and template. gallery with small images

gallery with small images

Bootstrap example and template. image with label

image with label

Bootstrap example and template. Photo post

Photo post

Bootstrap example and template. Experience resume page

Experience resume page

Bootstrap example and template. Large Blocks With No Space Arrow

Large Blocks With No Space Arrow

Bootstrap example and template. profile cards with social links

profile cards with social links

Bootstrap example and template. news widget

news widget

FAQ

How do I use this snippet?

Include Bootstrap 3.3.1, paste the HTML, add the CSS block, and include the JS (if any) to mirror the live preview.

Can I use it in commercial projects?

Yes. It’s free for personal and commercial work; check the snippets license for details.

Is it responsive?

Yes. It inherits the responsive grid and components from Bootstrap 3.3.1.

Bootstrap example and template. V card presentation

About this bootstrap example/template

Optimized for copy‑paste: clean HTML, scoped CSS, and minimal JS so you can ship production‑ready UI faster and keep designs consistent.

Mobile‑first and responsive by default. Tested across modern browsers to reduce polish time on your project.

Already trusted in 11.8K+ views. Reuse this snippet to speed up landing pages, dashboards, or onboarding flows.

Bootstrap 3.3.1

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

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

This code example is based on bootstrap 3.3.1 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

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