"Resume Tabs"
Bootstrap 4.0.0 Snippet by blayderunner123

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/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.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 ---------->
<div id="navbar-example">
<!-- Nav tabs -->
<ul class="nav nav-tabs" role="tablist">
<li class="nav-item">
<a class="nav-link active" data-toggle="tab" href="#attributes" role="tab">Attributes</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#profile" role="tab">Training, Clearance & Education</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#experience" role="tab">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#schools" role="tab">Schools</a>
</li>
</ul>
<!-- Tab panes {Fade} -->
<div class="tab-content">
<div class="tab-pane fade in active" id="attributes" name="attributes" role="tabpanel">
<div class="bs-callout bs-callout-danger">
<h4>Professional Attributes</h4>
<ul class="list-group">
<li class="list-group-item">Five years of experience in Web Technology and Mission Command facilitating knowledge flow, enhancing collaborative understanding, enabling learning and promoting efficient decision-making by exceeding expectations.</li>
<li class="list-group-item">Consistently honored as an effective and proven Information Management consultant, who leads, coaches, and trains internal and external customers.</li>
<li class="list-group-item">Acknowledged by peers as a dedicated, versatile, innovative, and cost conscious problem solver with a high degree of analytical ability to gather, assemble, analyze facts, draw conclusions, and devise solutions to problems which will increase efficiency.</li>
<li class="list-group-item">Recognized for extensive experience in converting capabilities and design requirements within a collaborative environment into working solutions and then communicating recommended solutions.</li>
<li class="list-group-item">Honored for expertize in the field of Enterprise SharePoint and "Vendor neutral" Web Design on Site Creation, Content Management, Design, consolidation, and integration.</li>
<li class="list-group-item">Overseen, managed, and developed various Department of Defense web sites based on industry best practices to include conceptual requirements, analysis, design, implementation, deployment and maintenance.</li>
<li class="list-group-item">Proficient in a range of operating systems, languages, tools and testing methodologies.</li>
</ul>
<table class="table">
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
/* Global Styles */
@import 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css';
*, *: before, *:after {
-webkit-box-sizing: border-box !important;
-moz-box-sizing: border-box !important;
box-sizing: border-box !important;
}
body {
width: 100%;
height: 100%;
font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
overflow-x: hidden;
position:relative;
}
html {
width: 100%;
height: 100%;
}
a:hover{
text-decoration:none;
}
/*page styling*/
.bs-callout {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: #eee;
border-image: none;
border-radius: 3px;
border-style: solid;
border-width: 1px 1px 1px 5px;
margin-bottom: 5px;
padding: 20px;
}
.bs-right-panel{
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
$(document).ready(function()
{
$("[rel='tooltip']").tooltip();
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments:

@blayderunner123 the attributes tab does not show up the content at first. when we click on any other tab and click back on attributes tab. then the content show up . please solve this problem.

paradise01 (2) - 6 years ago - Reply 2