"Resume-best-version"
Bootstrap 4.0.0 Snippet by mrservon22

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="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<head>
<script language="JavaScript" type="text/javascript" src="https://opensource.adobe.com/Spry/widgets/accordion/SpryAccordion.js"></script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<meta name="description" content="" />
<title>4-15</title>
<!-- css -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/font-awesome.css" rel="stylesheet" type="text/css" />
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery-2.2.0.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.js"></script>
<script language="JavaScript" type="text/javascript" src="https://opensource.adobe.com/Spry/widgets/accordion/SpryAccordion.js"></script>
</head>
<body>
<header class="navbar navbar-default navbar-fixed-top" style="box-shadow: 0px 10px 20px rgba(51,51,251,0.8);">
<div class="container clearfix">
<div id="header-row1" class="row">
<div class="col-xs-4">
<div class="row"><div class="col-xs-12"><span id="logo"><a> <img class="img-responsive img-fluid" src="http://www.sangampatel.com/assets/img/logo2-big.png" style="height:80%; weight:auto;"></a></span></div></div>
<div class="row tagline1"><div class="col-xs-12 text-center"><span class="text-center subtext"><strong class="logo-title logo-subtitle">Ace-Level Marketing Talent</strong></span></div></div><!-- TAGLINE -->
</div>
<div class="col-xs-1"></div>
<div class="col-xs-7">
<div class="tcb-quote-carousel">
<div class="carousel slide carousel-fade" id="fade-quote-carousel" data-ride="carousel" data-interval="10000">
<!-- Carousel items -->
<div class="carousel-inner">
<div class="item active"><i class=" fa fa-quote-left fa-3x" style="float:left; margin-top: -5px; background-color:white; color:darkblue;"></i><i class=" fa fa-quote-right fa-3x" style="float:right; margin-top: -5px;background-color:white; color:darkblue;"></i><blockquote><p style="color:blue;padding: -35px 0px 0 0; font-style:italic;">It is not the strongest of the species that survive, nor the most intelligent, but the ones that adapt best in response to change.</p><div class="clearfix"></div>
<div class="quoter"><strong>Charles Darwin </strong><small>Maker of Mankind's Greatest Discover</small>
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
/*ie.cssfirefox.cssopera.csschrome.css*/
/* NORMALIZATION */
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* 1. Correct the line height in all browsers. 2. Prevent adjustments of font size after orientation changes in iOS. */
html {line-height: 1;/* 1 */
-webkit-text-size-adjust: 100%;/* 2 */}
/* Sections ====== */
/* Remove the margin in all browsers.*/
body {margin: 0;}
/* Correct the font size and margin on `h1` elements within `section` and article` contexts in Chrome, Firefox, and Safari. */
h1 {font-size: 2em;margin: 0.67em 0;}
/* Grouping content ====================== */
/* 1. Add the correct box sizing in Firefox. 2. Show the overflow in Edge and IE. */
hr {-webkit-box-sizing: content-box; box-sizing: content-box;/* 1 */
height: 0;/* 1 */
overflow: visible;/* 2 */}
/* 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
pre {font-family: monospace, monospace;/* 1 */ font-size: 1em;/* 2 */}
/* Text-level semantics ======================= */
/* Remove the gray background on active links in IE 10. */
a {background-color: transparent;}
/* 1. Remove the bottom border in Chrome 57- 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
abbr[title] {
border-bottom: none;/* 1 */
text-decoration: underline;/* 2 */
-webkit-text-decoration: underline dotted;text-decoration: underline dotted;/* 2 */}
/* Add the correct font weight in Chrome, Edge, and Safari. */
b,
strong {font-weight: bolder;}
/* 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
code,kbd,samp {font-family: monospace, monospace;/* 1 */
font-size: 1em;/* 2 */}
/* Add the correct font size in all browsers. */
small {font-size: 80%;}
/* Prevent `sub` and `sup` elements from affecting the line height in all browsers. */
sub,sup { font-size: 75%;line-height: 0;position: relative;vertical-align: baseline;}
sub {bottom: -0.25em;}
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
/*! * classie v1.0.0 */ /*jshint browser: true, strict: true, undef: true, unused: true */ /*global define: false */
( function( window )
{'use strict';
// class helper functions from bonzo https://github.com/ded/bonzo
function classReg( className ) {return new RegExp("(^|\\s+)" + className + "(\\s+|$)");}
// classList support for class management
// altho to be fair, the api sucks because it won't accept multiple classes at once
var hasClass, addClass, removeClass; if ( 'classList' in document.documentElement )
{ hasClass = function( elem, c ) {return elem.classList.contains( c );};
addClass = function( elem, c ) {elem.classList.add( c );};
removeClass = function( elem, c ) {elem.classList.remove( c );};
}
else
{hasClass = function( elem, c ) {return classReg( c ).test( elem.className );};
addClass = function( elem, c ) {if ( !hasClass( elem, c ) ) {elem.className = elem.className + ' ' + c;} };
removeClass = function( elem, c ) {elem.className = elem.className.replace( classReg( c ), ' ' );};
}
function toggleClass( elem, c ) {var fn = hasClass( elem, c ) ? removeClass : addClass; fn( elem, c );}
var classie = { /* full names*/ hasClass: hasClass, addClass: addClass, removeClass: removeClass, toggleClass: toggleClass,
/* short names*/ has: hasClass, add: addClass, remove: removeClass, toggle: toggleClass};
// transport
if ( typeof define === 'function' && define.amd ) { /* AMD */ define( classie );}
else {/* browser global */ window.classie = classie;}
})( window );
// SpryAccordion.js - version 0.15 - Spry Pre-Release 1.6.1
//
// Copyright (c) 2006. Adobe Systems Incorporated.
// All rights reserved.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: