Bootstrap snippet and html example. Panels with nav tabs

Bootstrap 3.2.0 snippet "Panels with nav tabs" with HTML, CSS, and JS. Copy, paste, and customize this responsive UI component for your project.

HTML code

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


<html lang="en">
<head>
    <meta charset="utf-8">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
	<link href="https://rawgithub.com/hayageek/jquery-upload-file/master/css/uploadfile.css" rel="stylesheet">
	<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
	<script src="https://rawgithub.com/hayageek/jquery-upload-file/master/js/jquery.uploadfile.min.js"></script>
</head>
<body>

	<div class="container">
		<div class="page-header">
			<h1>Panels with nav tabs.<span class="pull-right label label-default">:)</span></h1>
		</div>

		<div class="col-md-12">
			<div class="panel with-nav-tabs panel-primary">
				<div class="panel-heading">
					<ul class="nav nav-tabs">
						<li><a href="#tab1primary" data-toggle="tab">ALL</a></li>
						<li class="active"><a href="#tab2primary" data-toggle="tab">
							<i class="fa fa-camera" aria-hidden="true"></i> Media Picture</a></li>
							<li><a href="#tab3primary" data-toggle="tab">Media File</a></li>
							<li><a href="#tab4primary" data-toggle="tab">Media Audio</a></li>
							<li class="dropdown">
								<a href="#" data-toggle="dropdown">Dropdown <span class="caret"></span></a>
								<ul class="dropdown-menu" role="menu">
									<li><a href="#tab5primary" data-toggle="tab">Isi Terserah</a></li>
									<li><a href="#tab6primary" data-toggle="tab">Isi Terserah</a></li>
								</ul>
							</li>
						</ul>
					</div>
					<div class="panel-body">
						<div class="tab-content">
							<div class="tab-pane fade" id="tab1primary">Primary 1</div>
							<div class="tab-pane fade in active" id="tab2primary">
								<div id="mulitplefileuploader">Upload</div>
								<div id="status"></div>
								<div id="startbutton" class="ajax-file-upload-green">Start Upload</div>
							</div>
							<div class="tab-pane fade" id="tab3primary">Primary 3</div>
							<div class="tab-pane fade" id="tab4primary">Primary 4</div>
							<div class="tab-pane fade" id="tab5primary">Primary 5</div>
							<div class="tab-pane fade" id="tab6primary">Primary 5</div>
						</div>
					</div>
				</div>
			</div>
		</div>
	</div>
	<script>
		$(document).ready(function()
			{   var settings = {
				url: "upload.php",
				method: "POST",
				allowedTypes:"jpg,png,gif,doc,pdf,zip",
				fileName: "myfile",
				multiple: true,

				dragdropWidth:1080,
				onSuccess:function(files,data,xhr)
				{
					$("#status").html("<font color='green'>Upload is success</font>");

				},
				onError: function(files,status,errMsg)
				{		
					$("#status").html("<font color='red'>Upload is Failed</font>");
				}
			}

			$("#mulitplefileuploader").uploadFile(settings);

		});

		$("#startbutton").click(function()
		{
			extraObj.startUpload();

		});
	</script>
</body>
</html>

CSS code

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


body{margin-top:20px;}

body{margin-top:20px;}
.with-nav-tabs.panel-primary .nav-tabs > li > a,
.with-nav-tabs.panel-primary .nav-tabs > li > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li > a:focus {
    color: #fff;
}
.with-nav-tabs.panel-primary .nav-tabs > .open > a,
.with-nav-tabs.panel-primary .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-primary .nav-tabs > li > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li > a:focus {
    color: #fff;
    background-color: #3071a9;
	border-color: transparent;
}
.with-nav-tabs.panel-primary .nav-tabs > li.active > a,
.with-nav-tabs.panel-primary .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li.active > a:focus {
	color: #428bca;
	background-color: #fff;
	border-color: #428bca;
	border-bottom-color: transparent;
}
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #428bca;
    border-color: #3071a9;
}
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #fff;   
}
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #3071a9;
}
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    background-color: #4a9fe9;
}

Similar snippets

Bootstrap example and template. simple user profile presentation social

simple user profile presentation social

Bootstrap example and template. Boostrap gmail style Sign in to continue

Boostrap gmail style Sign in to continue

Bootstrap example and template. tickets timeline

tickets timeline

Bootstrap example and template. profile videos

profile videos

Bootstrap example and template. user profile bio graph and total sales

user profile bio graph and total sales

Bootstrap example and template. circle photo with div change color

circle photo with div change color

Bootstrap example and template. blog content page

blog content page

Bootstrap example and template. friend zone user list

friend zone user list

FAQ

How do I use this snippet?

Include Bootstrap 3.2.0, 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.2.0.

Bootstrap example and template. Panels with nav tabs

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 2.6K+ views. Reuse this snippet to speed up landing pages, dashboards, or onboarding flows.

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

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