HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by Skypack, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ES6 import
usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<!-- Get Page Header
================================================== -->
<!DOCTYPE html>
<!--[if gt IE 8]><html class="ie" lang="en-US"><![endif]-->
<!--[if !IE]><!--><html lang="en-US"> <!--<![endif]-->
<!-- Head Section Started
================================================== -->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="UTF-8" />
<title>Home | Karl</title>
<!-- Get Variables and include files
================================================== -->
<!-- Responsive is enabled
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="https://themes.profteamsolutions.com/identity-vcard/wp-content/uploads/2014/11/Favicon.png" type="image/vnd.microsoft.icon"/>
<link rel='dns-prefetch' href='//maps.googleapis.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="Identity » Feed" href="https://themes.profteamsolutions.com/identity-vcard/?feed=rss2" />
<link rel="alternate" type="application/rss+xml" title="Identity » Comments Feed" href="https://themes.profteamsolutions.com/identity-vcard/?feed=comments-rss2" />
<link rel="alternate" type="application/rss+xml" title="Identity » Home Comments Feed" href="https://themes.profteamsolutions.com/identity-vcard/?feed=rss2&page_id=21" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/2.2.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/2.2.1\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/themes.profteamsolutions.com\/identity-vcard\/wp-includes\/js\/wp-emoji.js?ver=4.7.2","twemoji":"https:\/\/themes.profteamsolutions.com\/identity-vcard\/wp-includes\/js\/twemoji.js?ver=4.7.2"}};
( function( window, document, settings ) {
var src, ready, ii, tests;
/*
* Create a canvas element for testing native browser support
* of emoji.
*/
var canvas = document.createElement( 'canvas' );
var context = canvas.getContext && canvas.getContext( '2d' );
/**
* Detect if the browser supports rendering emoji or flag emoji. Flag emoji are a single glyph
* made of two characters, so some browsers (notably, Firefox OS X) don't support them.
*
* @since 4.2.0
*
* @param type {String} Whether to test for support of "flag" or "emoji4" emoji.
* @return {Boolean} True if the browser can render emoji, false if it cannot.
*/
function browserSupportsEmoji( type ) {
var stringFromCharCode = String.fromCharCode,
flag, flag2, technologist, technologist2;
if ( ! context || ! context.fillText ) {
return false;
}
// Cleanup from previous test.
context.clearRect( 0, 0, canvas.width, canvas.height );
/*
* Chrome on OS X added native emoji rendering in M41. Unfortunately,
* it doesn't work when the font is bolder than 500 weight. So, we
* check for bold rendering support to avoid invisible emoji in Chrome.
*/
context.textBaseline = 'top';
context.font = '600 32px Arial';
switch ( type ) {
case 'flag':
/*
* This works because the image will be one of three things:
* - Two empty squares, if the browser doesn't render emoji
* - Two squares with 'U' and 'N' in them, if the browser doesn't render flag emoji
* - The United Nations flag
*
* The first two will encode to small images (1-2KB data URLs), the third will encode
* to a larger image (4-5KB data URL).
*/
context.fillText( stringFromCharCode( 55356, 56826, 55356, 56819 ), 0, 0 );
if ( canvas.toDataURL().length < 3000 ) {
return false;
}
context.clearRect( 0, 0, canvas.width, canvas.height );
/*
* Test for rainbow flag compatibility. As the rainbow flag was added out of sequence with
* the usual Unicode release cycle, some browsers support it, and some don't, even if their
* Unicode support is up to date.
*
* To test for support, we try to render it, and compare the rendering to how it would look if
* the browser doesn't render it correctly (white flag emoji + rainbow emoji).
*/
context.fillText( stringFromCharCode( 55356, 57331, 65039, 8205, 55356, 57096 ), 0, 0 );
flag = canvas.toDataURL();
context.clearRect( 0, 0, canvas.width, canvas.height );
context.fillText( stringFromCharCode( 55356, 57331, 55356, 57096 ), 0, 0 );
flag2 = canvas.toDataURL();
return flag !== flag2;
case 'emoji4':
/*
* Emoji 4 has the best technologists. So does WordPress!
*
* To test for support, try to render a new emoji (woman technologist: medium skin tone),
* then compare it to how it would look if the browser doesn't render it correctly
* (woman technologist: medium skin tone + personal computer).
*/
context.fillText( stringFromCharCode( 55357, 56425, 55356, 57341, 8205, 55357, 56507), 0, 0 );
technologist = canvas.toDataURL();
context.clearRect( 0, 0, canvas.width, canvas.height );
context.fillText( stringFromCharCode( 55357, 56425, 55356, 57341, 55357, 56507), 0, 0 );
technologist2 = canvas.toDataURL();
return technologist !== technologist2;
}
return false;
}
function addScript( src ) {
var script = document.createElement( 'script' );
script.src = src;
script.defer = script.type = 'text/javascript';
document.getElementsByTagName( 'head' )[0].appendChild( script );
}
tests = Array( 'flag', 'emoji4' );
settings.supports = {
everything: true,
everythingExceptFlag: true
};
for( ii = 0; ii < tests.length; ii++ ) {
settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] );
settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ];
if ( 'flag' !== tests[ ii ] ) {
settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ];
}
}
settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag;
settings.DOMReady = false;
settings.readyCallback = function() {
settings.DOMReady = true;
};
if ( ! settings.supports.everything ) {
ready = function() {
settings.readyCallback();
};
if ( document.addEventListener ) {
document.addEventListener( 'DOMContentLoaded', ready, false );
window.addEventListener( 'load', ready, false );
} else {
window.attachEvent( 'onload', ready );
document.attachEvent( 'onreadystatechange', function() {
if ( 'complete' === document.readyState ) {
settings.readyCallback();
}
} );
}
src = settings.source || {};
if ( src.concatemoji ) {
addScript( src.concatemoji );
} else if ( src.wpemoji && src.twemoji ) {
addScript( src.twemoji );
addScript( src.wpemoji );
}
}
} )( window, document, window._wpemojiSettings );
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='dashicons-css' href='https://themes.profteamsolutions.com/identity-vcard/wp-includes/css/dashicons.css?ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='wp-jquery-ui-dialog-css' href='https://themes.profteamsolutions.com/identity-vcard/wp-includes/css/jquery-ui-dialog.css?ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='contact-form-7-css' href='https://themes.profteamsolutions.com/identity-vcard/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=4.6.1' type='text/css' media='all' />
<link rel='stylesheet' id='rs-plugin-settings-css' href='https://themes.profteamsolutions.com/identity-vcard/wp-content/plugins/revslider/public/assets/css/settings.css?ver=5.1.5' type='text/css' media='all' />
<style id='rs-plugin-settings-inline-css' type='text/css'>
.tp-caption a{color:#ff7302;text-shadow:none;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;-ms-transition:all 0.2s ease-out}.tp-caption a:hover{color:#ffa902}.tp-caption a{color:#ff7302;text-shadow:none;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;-ms-transition:all 0.2s ease-out}.tp-caption a:hover{color:#ffa902}.tp-caption a{color:#ff7302;text-shadow:none;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;-ms-transition:all 0.2s ease-out}.tp-caption a:hover{color:#ffa902}.largeredbtn{font-family:"Raleway",sans-serif;font-weight:900;font-size:16px;line-height:60px;color:#fff !important;text-decoration:none;padding-left:40px;padding-right:80px;padding-top:22px;padding-bottom:22px;background:rgb(234,91,31); background:-moz-linear-gradient(top,rgba(234,91,31,1) 0%,rgba(227,58,12,1) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(234,91,31,1)),color-stop(100%,rgba(227,58,12,1))); background:-webkit-linear-gradient(top,rgba(234,91,31,1) 0%,rgba(227,58,12,1) 100%); background:-o-linear-gradient(top,rgba(234,91,31,1) 0%,rgba(227,58,12,1) 100%); background:-ms-linear-gradient(top,rgba(234,91,31,1) 0%,rgba(227,58,12,1) 100%); background:linear-gradient(to bottom,rgba(234,91,31,1) 0%,rgba(227,58,12,1) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea5b1f',endColorstr='#e33a0c',GradientType=0 )}.largeredbtn:hover{background:rgb(227,58,12); background:-moz-linear-gradient(top,rgba(227,58,12,1) 0%,rgba(234,91,31,1) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(227,58,12,1)),color-stop(100%,rgba(234,91,31,1))); background:-webkit-linear-gradient(top,rgba(227,58,12,1) 0%,rgba(234,91,31,1) 100%); background:-o-linear-gradient(top,rgba(227,58,12,1) 0%,rgba(234,91,31,1) 100%); background:-ms-linear-gradient(top,rgba(227,58,12,1) 0%,rgba(234,91,31,1) 100%); background:linear-gradient(to bottom,rgba(227,58,12,1) 0%,rgba(234,91,31,1) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#e33a0c',endColorstr='#ea5b1f',GradientType=0 )}.fullrounded img{-webkit-border-radius:400px;-moz-border-radius:400px;border-radius:400px}.tp-caption a{color:#ff7302;text-shadow:none;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;-ms-transition:all 0.2s ease-out}.tp-caption a:hover{color:#ffa902}.tp-caption a{color:#ff7302;text-shadow:none;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;-ms-transition:all 0.2s ease-out}.tp-caption a:hover{color:#ffa902}.largeredbtn{font-family:"Raleway",sans-serif;font-weight:900;font-size:16px;line-height:60px;color:#fff !important;text-decoration:none;padding-left:40px;padding-right:80px;padding-top:22px;padding-bottom:22px;background:rgb(234,91,31); background:-moz-linear-gradient(top,rgba(234,91,31,1) 0%,rgba(227,58,12,1) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(234,91,31,1)),color-stop(100%,rgba(227,58,12,1))); background:-webkit-linear-gradient(top,rgba(234,91,31,1) 0%,rgba(227,58,12,1) 100%); background:-o-linear-gradient(top,rgba(234,91,31,1) 0%,rgba(227,58,12,1) 100%); background:-ms-linear-gradient(top,rgba(234,91,31,1) 0%,rgba(227,58,12,1) 100%); background:linear-gradient(to bottom,rgba(234,91,31,1) 0%,rgba(227,58,12,1) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea5b1f',endColorstr='#e33a0c',GradientType=0 )}.largeredbtn:hover{background:rgb(227,58,12); background:-moz-linear-gradient(top,rgba(227,58,12,1) 0%,rgba(234,91,31,1) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(227,58,12,1)),color-stop(100%,rgba(234,91,31,1))); background:-webkit-linear-gradient(top,rgba(227,58,12,1) 0%,rgba(234,91,31,1) 100%); background:-o-linear-gradient(top,rgba(227,58,12,1) 0%,rgba(234,91,31,1) 100%); background:-ms-linear-gradient(top,rgba(227,58,12,1) 0%,rgba(234,91,31,1) 100%); background:linear-gradient(to bottom,rgba(227,58,12,1) 0%,rgba(234,91,31,1) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#e33a0c',endColorstr='#ea5b1f',GradientType=0 )}.fullrounded img{-webkit-border-radius:400px;-moz-border-radius:400px;border-radius:400px}
</style>
<link rel='stylesheet' id='style-css' href='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/style.css?ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='identity-icons-css' href='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/styles/identity-icons.css?ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='identity-usage-css' href='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/styles/identity-usage.css?ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='plugins-css' href='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/styles/identity/plugins.css?ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='bootstrap-css' href='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/styles/identity/bootstrap.min.css?ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='identity-style-css' href='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/styles/identity/style.css?ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='style-responsive-css' href='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/styles/identity/style-responsive.css?ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='identity-custom-css' href='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/identity-styles.css?ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='js_composer_front-css' href='https://themes.profteamsolutions.com/identity-vcard/wp-content/plugins/js_composer/assets/css/js_composer.min.css?ver=4.9' type='text/css' media='all' />
<link rel='stylesheet' id='siteFont-css' href='https://fonts.googleapis.com/css?family=Source+Sans+Pro%3A400%2C200%2C200italic%2C300italic%2C300%2C400italic%2C600%2C600italic%2C700italic%2C700%2C900%2C900italic&ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='menuFont-css' href='https://fonts.googleapis.com/css?family&ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='headingOneFont-css' href='https://fonts.googleapis.com/css?family=Oswald%3A400%2C300%2C700&subset=latin%2Clatin-ext&ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='headingTwoFont-css' href='https://fonts.googleapis.com/css?family=Oswald%3A400%2C300%2C700&subset=latin%2Clatin-ext&ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='headingThreeFont-css' href='https://fonts.googleapis.com/css?family=Oswald%3A400%2C300%2C700&subset=latin%2Clatin-ext&ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='headingFourFont-css' href='https://fonts.googleapis.com/css?family=Oswald%3A400%2C300%2C700&subset=latin%2Clatin-ext&ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='headingFiveFont-css' href='https://fonts.googleapis.com/css?family=Oswald%3A400%2C300%2C700&subset=latin%2Clatin-ext&ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='headingSixFont-css' href='https://fonts.googleapis.com/css?family=Oswald%3A400%2C300%2C700&subset=latin%2Clatin-ext&ver=4.7.2' type='text/css' media='all' />
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-includes/js/jquery/jquery-migrate.js?ver=1.4.1'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/plugins/revslider/public/assets/js/jquery.themepunch.tools.min.js?ver=5.1.5'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/plugins/revslider/public/assets/js/jquery.themepunch.revolution.min.js?ver=5.1.5'></script>
<link rel='https://api.w.org/' href='https://themes.profteamsolutions.com/identity-vcard/?rest_route=/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://themes.profteamsolutions.com/identity-vcard/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://themes.profteamsolutions.com/identity-vcard/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 4.7.2" />
<link rel="canonical" href="https://themes.profteamsolutions.com/identity-vcard/?page_id=21" />
<link rel='shortlink' href='https://themes.profteamsolutions.com/identity-vcard/?p=21' />
<link rel="alternate" type="application/json+oembed" href="https://themes.profteamsolutions.com/identity-vcard/?rest_route=%2Foembed%2F1.0%2Fembed&url=https%3A%2F%2Fthemes.profteamsolutions.com%2Fidentity-vcard%2F%3Fpage_id%3D21" />
<link rel="alternate" type="text/xml+oembed" href="https://themes.profteamsolutions.com/identity-vcard/?rest_route=%2Foembed%2F1.0%2Fembed&url=https%3A%2F%2Fthemes.profteamsolutions.com%2Fidentity-vcard%2F%3Fpage_id%3D21&format=xml" />
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
<meta name="generator" content="Powered by Visual Composer - drag and drop page builder for WordPress."/>
<!--[if lte IE 9]><link rel="stylesheet" type="text/css" href="https://themes.profteamsolutions.com/identity-vcard/wp-content/plugins/js_composer/assets/css/vc_lte_ie9.min.css" media="screen"><![endif]--><!--[if IE 8]><link rel="stylesheet" type="text/css" href="https://themes.profteamsolutions.com/identity-vcard/wp-content/plugins/js_composer/assets/css/vc-ie8.min.css" media="screen"><![endif]--><meta name="generator" content="Powered by Slider Revolution 5.1.5 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." />
<style type="text/css" data-type="vc_custom-css">.make-margin-bottom-zero{
margin-bottom: 0;
}
.make-margin-top-sixtytwo{
margin-top: 62px !important;
}
.make-margin-bottom-six{
margin-bottom: 6px;
}
.make-margin-bottom-seventy{
margin-bottom: 70px;
}
.make-margin-bottom-twenty{
margin-left: 20px !important;
}
.make-margin-bottom-sixty{
margin-bottom: 60px;
}
.identity-side-video.wpb_video_widget .wpb_wrapper iframe{
height: 280px;
}
.make-margin-bottom-three{
margin-bottom: 3px;
}
.make-margin-bottom-twentytwo{
margin-bottom: 22px;
}
.make-margin-bottom-fourty,
.make-margin-bottom-forty{
margin-bottom: 40px;
}
.make-text-align-center{
text-align: center;
}
.make-margin-bottom-sixtytwo{
margin-bottom: 62px;
}
.make-margin-bottom-eight{
margin-bottom: 8px;
}
.make-margin-bottom-eighteen{margin-bottom:18px;}
.make-margin-bottom-thirteen{margin-bottom:13px;}
.make-button-margin .btn.btn-primary{
margin-left:20px !important;
}
.vc_column-inner.vc_custom_1450395668012{padding:0px !important;}</style><style type="text/css" data-type="vc_shortcodes-custom-css">.vc_custom_1442957040306{background-color: #474d5d !important;}.vc_custom_1442957064511{background-color: #efefef !important;}.vc_custom_1442957099879{background-color: #efefef !important;}.vc_custom_1442957123992{background-color: #474d5d !important;}.vc_custom_1442957151209{background-color: #efefef !important;}.vc_custom_1442958156357{background-image: url(https://themes.profteamsolutions.com/identity-vcard/wp-content/uploads/2014/09/parallax3.jpg?id=103) !important;}.vc_custom_1442957184499{background-color: #474d5d !important;}.vc_custom_1450396522267{margin-bottom: 0px !important;background-color: #efefef !important;}.vc_custom_1450399897560{margin-top: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1416731840698{margin-bottom: 50px !important;}.vc_custom_1416738722275{margin-bottom: 0px !important;}.vc_custom_1450395829266{margin-bottom: 0px !important;}.vc_custom_1450390061407{margin-bottom: 0px !important;}.vc_custom_1450395768414{margin-bottom: 0px !important;}.vc_custom_1450395668012{margin-top: 0px !important;}.vc_custom_1450399573245{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;}</style><noscript><style type="text/css"> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript>
</head>
<!-- Head Section End
================================================== -->
<!-- Body Section Started
================================================== -->
<body class="page-template page-template-homepage page-template-homepage-php page page-id-21 single-page identity-mobile-hide-animation identity-pc-device wpb-js-composer js-comp-ver-4.9 vc_responsive">
<!-- Pre-loader -->
<div class="mask">
<div id="intro-loader">
</div>
</div>
<!-- End Pre-loader -->
<!-- Navbar -->
<!-- Navigation -->
<div class="navbar navbar-fixed-top ">
<nav id="navigation-sticky" class="trans-nav">
<!-- Navigation Inner -->
<div class="container inner">
<div class="logo">
<!-- Navigation Logo Link -->
<a href="" title="A website by Karl" rel="home" class="scroll">
<img src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486823146/Logomakr_84phJS_gsvjeo.png" alt="logo" class="site_logo" />
</a>
</div>
<!-- Mobile Menu Button -->
<a class="mobile-nav-button"><i class="fa fa-bars"></i></a>
<!-- Navigation Menu -->
<div class="nav-menu">
<div class="nav">
<div class="menu-identity-container"><ul id="menu-identity" class="menu nav"><li class="menu-item menu-item-type-custom menu-item-object-custom "><a href="#home">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown-toggle nav-toggle"><a href="#about">About</a>
<ul class="dropdown-menu clearfix">
<li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="https://themes.profteamsolutions.com/identity-vcard/?page_id=406">Blog Page</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="https://themes.profteamsolutions.com/identity-vcard/?page_id=446">Blog Left Sidebar</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-post "><a href="https://themes.profteamsolutions.com/identity-vcard/?p=321">Single Blog</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="https://themes.profteamsolutions.com/identity-vcard/?page_id=422">Our Shortcodes</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="https://themes.profteamsolutions.com/identity-vcard/?page_id=456">Page Full Width</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="https://themes.profteamsolutions.com/identity-vcard/?page_id=453">Page Left Sidebar</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="https://themes.profteamsolutions.com/identity-vcard/?page_id=450">Page Right Sidebar</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom "><a href="https://themes.profteamsolutions.com/identity-vcard/?page_id=993355">404</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown-toggle nav-toggle"><a href="#works">Works</a>
<ul class="dropdown-menu clearfix">
<li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="https://themes.profteamsolutions.com/identity-vcard/?page_id=463">Works Page</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom "><a href="#skills">Skills</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom "><a href="#resume">Resume</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom "><a href="#clients">Clients</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom "><a href="#process">Process</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom "><a href="#contact">Contact</a></li>
</ul></div> </div>
</div>
<!-- End Navigation Menu -->
</div>
<!-- End Navigation Inner -->
</nav>
<!-- End Navigation -->
</div>
<!-- End Navbar -->
<!-- === START SLIDER SECTION === -->
<section id="home">
<link href="https://fonts.googleapis.com/css?family=Source Sans Pro:700" rel="stylesheet" property="stylesheet" type="text/css" media="all" />
<div id="rev_slider_1_1_wrapper" class="rev_slider_wrapper fullwidthbanner-container" style="margin:0px auto;background-color:transparent;padding:0px;margin-top:0px;margin-bottom:0px;">
<!-- START REVOLUTION SLIDER 5.1.5 fullwidth mode -->
<div id="rev_slider_1_1" class="rev_slider fullwidthabanner" style="display:none;" data-version="5.1.5">
<ul> <!-- SLIDE -->
<li data-index="rs-1" data-transition="notransition" data-slotamount="7" data-hideafterloop="0" data-easein="default" data-easeout="default" data-masterspeed="300" data-thumb="https://themes.profteamsolutions.com/identity-vcard/wp-content/uploads/2014/11/slide11-100x50.png" data-rotate="0" data-saveperformance="off" data-title="Creative" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="">
<!-- MAIN IMAGE -->
<img src="https://themes.profteamsolutions.com/identity-vcard/wp-content/plugins/revslider/admin/assets/images/dummy.png" alt="slide1" width="1280" height="859" data-lazyload="https://cdn2.hubspot.net/hubfs/678212/designdeath2.jpg" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="off" class="rev-slidebg" data-no-retina>
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption black tp-resizeme"
id="slide-1-layer-1"
data-x="['center','center','center','center']" data-hoffset="['2','2','2','2']"
data-y="['middle','middle','middle','middle']" data-voffset="['45','45','45','45']"
data-width="507"
data-height="none"
data-whitespace="normal"
data-transform_idle="o:1;"
data-transform_in="opacity:0;s:300;e:Power3.easeInOut;"
data-transform_out="opacity:0;s:300;s:300;"
data-start="1000"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 5; min-width: 507px; max-width: 507px; white-space: normal; line-height: 100px; font-weight: 700;padding:4px 20px 4px 20px;border-color:rgba(255, 255, 255, 1.00);">KHOA NGUYEN
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption StyleTwo tp-resizeme"
id="slide-1-layer-2"
data-x="['center','center','center','center']" data-hoffset="['15','15','15','15']"
data-y="['middle','middle','middle','middle']" data-voffset="['-40','-40','-40','-40']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="opacity:0;s:300;e:Power3.easeInOut;"
data-transform_out="opacity:0;s:300;s:300;"
data-start="500"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 6; white-space: nowrap; line-height: px;border-color:rgba(255, 255, 255, 1.00);">WELCOME TO MY SITE
</div>
</li>
<!-- SLIDE -->
<li data-index="rs-2" data-transition="notransition" data-slotamount="7" data-hideafterloop="0" data-easein="default" data-easeout="default" data-masterspeed="300" data-thumb="https://themes.profteamsolutions.com/identity-vcard/wp-content/uploads/2014/11/slide2-100x50.png" data-rotate="0" data-saveperformance="off" data-title="Identity" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="">
<!-- MAIN IMAGE -->
<img src="https://themes.profteamsolutions.com/identity-vcard/wp-content/plugins/revslider/admin/assets/images/dummy.png" alt="slide2" width="1280" height="859" data-lazyload="https://res.cloudinary.com/dx9mo8k5d/image/upload/v1463495404/banner_smbohh.jpg" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="off" class="rev-slidebg" data-no-retina>
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption black tp-resizeme"
id="slide-2-layer-1"
data-x="['center','center','center','center']" data-hoffset="['3','3','3','3']"
data-y="['middle','middle','middle','middle']" data-voffset="['50','50','50','50']"
data-width="450"
data-height="none"
data-whitespace="normal"
data-transform_idle="o:1;"
data-transform_in="opacity:0;s:300;e:Power3.easeInOut;"
data-transform_out="opacity:0;s:300;s:300;"
data-start="1000"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 5; min-width: 663px; max-width: 663px; white-space: normal; line-height: 100px; font-weight: 100;padding:4px 20px 4px 20px;border-color:rgba(255, 255, 255, 1.00);">PROGRAMMER
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption StyleTwo tp-resizeme"
id="slide-2-layer-2"
data-x="['center','center','center','center']" data-hoffset="['5','5','5','5']"
data-y="['middle','middle','middle','middle']" data-voffset="['-48','-48','-48','-48']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="opacity:0;s:300;e:Power3.easeInOut;"
data-transform_out="opacity:0;s:300;s:300;"
data-start="1000"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 6; white-space: nowrap; line-height: px;border-color:rgba(255, 255, 255, 1.00);">CREATIVE - PROFESSIONAL - PASSIONATE
</div>
</li>
</ul>
<div class="tp-bannertimer" style="height: 5px; background-color: rgba(0, 0, 0, 0.15);"></div> </div>
<script>var htmlDiv = document.getElementById("rs-plugin-settings-inline-css"); var htmlDivCss=".tp-caption.black,.black{padding:4px 20px;font-family:Oswald,helvetica,arial,sans-serif;font-size:80px;line-height:1.2px;color:#fff;border-width:3px;border-color:rgb(255,255,255);border-style:solid;text-shadow:none;display:inline-block;letter-spacing:-2px;text-transform:uppercase}.tp-caption.StyleTwo,.StyleTwo{font-family:\"Source Sans Pro\";font-size:32px;font-weight:700;color:#fff;border-width:0px;border-color:rgb(255,255,255);border-style:none;letter-spacing:1px;text-transform:uppercase}";
if(htmlDiv) {
htmlDiv.innerHTML = htmlDiv.innerHTML + htmlDivCss;
}else{
var htmlDiv = document.createElement("div");
htmlDiv.innerHTML = "<style>" + htmlDivCss + "</style>";
document.getElementsByTagName("head")[0].appendChild(htmlDiv.childNodes[0]);
}
</script>
<script type="text/javascript">
/******************************************
- PREPARE PLACEHOLDER FOR SLIDER -
******************************************/
var setREVStartSize=function(){
try{var e=new Object,i=jQuery(window).width(),t=9999,r=0,n=0,l=0,f=0,s=0,h=0;
e.c = jQuery('#rev_slider_1_1');
e.responsiveLevels = [1240,1024,778,480];
e.gridwidth = [1240,1024,778,480];
e.gridheight = [700,600,960,720];
e.sliderLayout = "fullwidth";
if(e.responsiveLevels&&(jQuery.each(e.responsiveLevels,function(e,f){f>i&&(t=r=f,l=e),i>f&&f>r&&(r=f,n=e)}),t>r&&(l=n)),f=e.gridheight[l]||e.gridheight[0]||e.gridheight,s=e.gridwidth[l]||e.gridwidth[0]||e.gridwidth,h=i/s,h=h>1?1:h,f=Math.round(h*f),"fullscreen"==e.sliderLayout){var u=(e.c.width(),jQuery(window).height());if(void 0!=e.fullScreenOffsetContainer){var c=e.fullScreenOffsetContainer.split(",");if (c) jQuery.each(c,function(e,i){u=jQuery(i).length>0?u-jQuery(i).outerHeight(!0):u}),e.fullScreenOffset.split("%").length>1&&void 0!=e.fullScreenOffset&&e.fullScreenOffset.length>0?u-=jQuery(window).height()*parseInt(e.fullScreenOffset,0)/100:void 0!=e.fullScreenOffset&&e.fullScreenOffset.length>0&&(u-=parseInt(e.fullScreenOffset,0))}f=u}else void 0!=e.minHeight&&f<e.minHeight&&(f=e.minHeight);e.c.closest(".rev_slider_wrapper").css({height:f})
}catch(d){console.log("Failure at Presize of Slider:"+d)}
};
setREVStartSize();
function revslider_showDoubleJqueryError(sliderID) {
var errorMessage = "Revolution Slider Error: You have some jquery.js library include that comes after the revolution files js include.";
errorMessage += "<br> This includes make eliminates the revolution slider libraries, and make it not work.";
errorMessage += "<br><br> To fix it you can:<br> 1. In the Slider Settings -> Troubleshooting set option: <strong><b>Put JS Includes To Body</b></strong> option to true.";
errorMessage += "<br> 2. Find the double jquery.js include and remove it.";
errorMessage = "<span style='font-size:16px;color:#BC0C06;'>" + errorMessage + "</span>";
jQuery(sliderID).show().html(errorMessage);
}
var tpj=jQuery;
var revapi1;
tpj(document).ready(function() {
if(tpj("#rev_slider_1_1").revolution == undefined){
revslider_showDoubleJqueryError("#rev_slider_1_1");
}else{
revapi1 = tpj("#rev_slider_1_1").show().revolution({
sliderType:"standard",
jsFileLocation:"//themes.profteamsolutions.com/identity-vcard/wp-content/plugins/revslider/public/assets/js/",
sliderLayout:"fullwidth",
dottedOverlay:"none",
delay:9000,
navigation: {
keyboardNavigation:"off",
keyboard_direction: "horizontal",
mouseScrollNavigation:"off",
onHoverStop:"on",
touch:{
touchenabled:"on",
swipe_threshold: 75,
swipe_min_touches: 50,
swipe_direction: "horizontal",
drag_block_vertical: false
}
,
arrows: {
style:"hesperiden",
enable:true,
hide_onmobile:true,
hide_under:600,
hide_onleave:true,
hide_delay:200,
hide_delay_mobile:1200,
tmp:'',
left: {
h_align:"left",
v_align:"center",
h_offset:30,
v_offset:0
},
right: {
h_align:"right",
v_align:"center",
h_offset:30,
v_offset:0
}
}
,
bullets: {
enable:true,
hide_onmobile:true,
hide_under:600,
style:"hephaistos",
hide_onleave:true,
hide_delay:200,
hide_delay_mobile:1200,
direction:"horizontal",
h_align:"center",
v_align:"bottom",
h_offset:0,
v_offset:30,
space:5,
tmp:''
}
},
responsiveLevels:[1240,1024,778,480],
visibilityLevels:[1240,1024,778,480],
gridwidth:[1240,1024,778,480],
gridheight:[700,600,960,720],
lazyType:"smart",
parallax: {
type:"mouse",
origo:"slidercenter",
speed:2000,
levels:[2,3,4,5,6,7,12,16,10,50,46,47,48,49,50,55],
type:"mouse",
},
shadow:0,
spinner:"off",
stopLoop:"off",
stopAfterLoops:-1,
stopAtSlide:-1,
shuffle:"off",
autoHeight:"off",
hideThumbsOnMobile:"off",
hideSliderAtLimit:0,
hideCaptionAtLimit:0,
hideAllCaptionAtLilmit:0,
debugMode:false,
fallbacks: {
simplifyAll:"off",
nextSlideOnWindowFocus:"off",
disableFocusListener:false,
}
});
}
}); /*ready*/
</script>
<script>
var htmlDivCss = unescape(".hesperiden.tparrows%20%7B%0A%09cursor%3Apointer%3B%0A%09background%3A%23000%3B%0A%09background%3Argba%280%2C0%2C0%2C0.5%29%3B%0A%09width%3A40px%3B%0A%09height%3A40px%3B%0A%09position%3Aabsolute%3B%0A%09display%3Ablock%3B%0A%09z-index%3A100%3B%0A%20%20%20%20border-radius%3A%2050%25%3B%0A%7D%0A.hesperiden.tparrows%3Ahover%20%7B%0A%09background%3A%23000%3B%0A%7D%0A.hesperiden.tparrows%3Abefore%20%7B%0A%09font-family%3A%20%22revicons%22%3B%0A%09font-size%3A20px%3B%0A%09color%3A%23fff%3B%0A%09display%3Ablock%3B%0A%09line-height%3A%2040px%3B%0A%09text-align%3A%20center%3B%0A%7D%0A.hesperiden.tparrows.tp-leftarrow%3Abefore%20%7B%0A%09content%3A%20%22%5Ce82c%22%3B%0A%20%20%20%20margin-left%3A-3px%3B%0A%7D%0A.hesperiden.tparrows.tp-rightarrow%3Abefore%20%7B%0A%09content%3A%20%22%5Ce82d%22%3B%0A%20%20%20%20margin-right%3A-3px%3B%0A%7D%0A.hephaistos.tp-bullets%20%7B%0A%7D%0A.hephaistos.tp-bullets%3Abefore%20%7B%0A%09content%3A%22%20%22%3B%0A%09position%3Aabsolute%3B%0A%09width%3A100%25%3B%0A%09height%3A100%25%3B%0A%09background%3Atransparent%3B%0A%09padding%3A10px%3B%0A%09margin-left%3A-10px%3Bmargin-top%3A-10px%3B%0A%09box-sizing%3Acontent-box%3B%0A%7D%0A.hephaistos%20.tp-bullet%20%7B%0A%09width%3A12px%3B%0A%09height%3A12px%3B%0A%09position%3Aabsolute%3B%0A%09background%3A%23999%3B%0A%09border%3A3px%20solid%20%23f5f5f5%3B%0A%09border-radius%3A50%25%3B%0A%09cursor%3A%20pointer%3B%0A%09box-sizing%3Acontent-box%3B%0A%20%20box-shadow%3A%200px%200px%202px%201px%20rgba%28130%2C130%2C130%2C%200.3%29%3B%0A%0A%7D%0A.hephaistos%20.tp-bullet%3Ahover%2C%0A.hephaistos%20.tp-bullet.selected%20%7B%0A%09background%3A%23fff%3B%0A%20%20%20%20border-color%3A%23000%3B%0A%7D%0A.hephaistos%20.tp-bullet-image%20%7B%0A%7D%0A.hephaistos%20.tp-bullet-title%20%7B%0A%7D%0A%0A");
var htmlDiv = document.getElementById('rs-plugin-settings-inline-css');
if(htmlDiv) {
htmlDiv.innerHTML = htmlDiv.innerHTML + htmlDivCss;
}
else{
var htmlDiv = document.createElement('div');
htmlDiv.innerHTML = '<style>' + htmlDivCss + '</style>';
document.getElementsByTagName('head')[0].appendChild(htmlDiv.childNodes[0]);
}
</script>
</div><!-- END REVOLUTION SLIDER --> </section>
<!-- === END SLIDER SECTION === -->
<!-- Page Begin
================================================== -->
<div class="main-container">
<div class="main-page-column-data main-page-column-data-full">
<div class="get-column-container">
<div class="page-content">
<div class="vc_row wpb_row vc_row-fluid make-margin-bottom-zero"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><div id="about"></div><div class="homepage-container-design " style="background-image:url();color:#666666;background-repeat:repeat; padding-top:50px; padding-bottom:0px; background-size:cover; background-position:top center;">
<div class="homepage-container-design-inner"><div class="vc_row wpb_row vc_inner vc_row-fluid make-margin-bottom-zero"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="section-title item_bottom text-center">
<div style="background-color: #cccccc;">
<span class="fa fa-user fa-2x" style="color: #ffffff;"></span>
</div>
<h1 style="color: ;">ABOUT <span style="background-color: rgba(59,63,80,0.6);">ME</span></h1>
</div></div></div></div></div><div class="vc_row wpb_row vc_inner vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-4"><div class="vc_column-inner "><div class="wpb_wrapper">
<div class="text-center item_bottom">
<img src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486822019/14468674_1247019468652714_737351192154737666_o_ltcwbj.jpg" class="img-center img-responsive" alt="photo"/>
<div class="name-title" style="background-color: rgba(59,63,80,0.8);">
<h2 style="color:#FFF;">KHOA NGUYEN</h2>
<h5 style="color:#FFF;">PROGRAMMER</h5>
</div>
</div>
</div></div></div><div class="wpb_column vc_column_container vc_col-sm-4"><div class="vc_column-inner "><div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p class="quoteline" style="font-family: oswald !important; font-size: 18px !important; font-weight: normal !important;">First, solve the problem. Then, write the code.</p>
<p>Hi, my name is Karl, and I am a programmer from New Zealand. </p>
<p>I see myself as highly motivated person with the right skill set in mind. My main objective is to get better, by learning, seeking opportunities and contributing.</p>
<p class="text-right"><a href=""><img class="alignnone size-full wp-image-566" src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486824395/signature_934cf6t7602vy1kec2_qcibnl.png" alt="signature" width="150" height="50" /></a></p>
</div>
</div>
</div></div></div><div class="wpb_column vc_column_container vc_col-sm-4"><div class="vc_column-inner "><div class="wpb_wrapper"><div style="color:#333333;">
<ul class="fa-ul">
<li><img src ="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486836300/Logomakr_3OHOdB_rjmz7d.png" height="20" width="20" ></img><strong>birthdate</strong> : 10/04/1997</li>
<li><img src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486836889/Logomakr_0QXVQU_re82lf.png" height="20" width="20"></img><strong>phone</strong> : +64 21 1089 172</li>
<li><img src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486837095/Logomakr_2AxSKL_tglsyc.png" height="20" width ="20"></img><strong>email</strong> : [email protected]</li>
<li><img src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486837211/Logomakr_3vXpaw_pboxh1.png" height="20" width="20"></img><strong>website</strong> : https://nz.linkedin.com/in/khoanguyen97
</li>
<li><img src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486837354/Logomakr_2tqzL6_odoakg.png" height="20" width="20"></img><strong>address</strong> : Auckland, New Zealand</li>
</ul></div><div class="vc_empty_space" style="height: 60px" ><span class="vc_empty_space_inner"></span></div>
</div></div></div></div></div></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid make-margin-bottom-zero"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="homepage-container-design " style="background-image:url();color:#666666;background-repeat:repeat; padding-top:40px; padding-bottom:25px; background-size:cover; background-position:top center;">
<div class="homepage-container-design-inner"><div class="vc_row wpb_row vc_inner vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-4"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="services-box item_left">
<h4>WEB DEVELOPING</h4>
<div class="services-box-icon">
<img src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486879713/Logomakr_6RnlLb_d5r2j3.png"></img>
</div>
<div class="service-box-info">
<p>
Have your own websites made in minutes with Wordpress or Django.
</p>
</div>
</div></div></div></div><div class="wpb_column vc_column_container vc_col-sm-4"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="services-box item_bottom">
<h4>SCRIPTING</h4>
<div class="services-box-icon">
<img src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486880099/Logomakr_8mNhIu_ixszxj.png"></img>
</div>
<div class="service-box-info">
<p>
Extract any data from a website, or simply do anything, with scripts.
</p>
</div>
</div></div></div></div><div class="wpb_column vc_column_container vc_col-sm-4"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="services-box item_right">
<h4>CUSTOMER SUPPORT</h4>
<div class="services-box-icon">
<img src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486880211/Logomakr_0HrMo7_mz9sfj.png"></img>
</div>
<div class="service-box-info">
<p>
24/7 support. High response rate by email.
</p>
</div>
</div></div></div></div></div></div></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid make-margin-bottom-zero vc_custom_1442957040306 vc_row-has-fill"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><div id="works"></div><div class="homepage-container-design " style="background-image:url();color:#666666;background-repeat:repeat; padding-top:50px; padding-bottom:25px; background-size:cover; background-position:top center;">
<div class="homepage-container-design-inner"><div class="section-title item_bottom text-center">
<div style="background-color: #cccccc;">
<span class="fa fa-briefcase fa-2x" style="color: #ffffff;"></span>
</div>
<h1 style="color: #ffffff;">My <span style="background-color: rgba(239,239,239,0.6);">Works</span></h1>
</div><div class="vc_row wpb_row vc_inner vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><div id="portfolio-filter">
<div class="row text-center">
<div class="col-md-12">
<ul class="portfolio-filter-list white">
<li>
<a class="active" href="#" data-cat="*">ALL</a>
</li><li>
<a href="#" data-cat="design">DESIGN</a>
</li><li>
<a href="#" data-cat="mobile">MOBILE</a>
</li><li>
<a href="#" data-cat="photo">PHOTO</a>
</li><li>
<a href="#" data-cat="video">VIDEO</a>
</li><li>
<a href="#" data-cat="web">WEB</a>
</li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div id="portfolio-items" class="portfolio-items item_fade_in">
<article class="design web ">
<iframe height='345' scrolling='no' title='Personal Resume' src='//codepen.io/Karl97/embed/egQoYM/?height=345&theme-id=dark&default-tab=html,result&embed-version=2' frameborder='no' allowtransparency='true' allowfullscreen='true' style='width: 100%;'>See the Pen <a href='https://codepen.io/Karl97/pen/egQoYM/'>Personal Resume</a> by Karl (<a href='https://codepen.io/Karl97'>@Karl97</a>) on <a href='https://codepen.io'>CodePen</a>.
</iframe>
</article> </div></div></div></div></div></div></div></div></div></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid make-margin-bottom-zero vc_custom_1442957064511 vc_row-has-fill"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><div id="skills"></div><div class="homepage-container-design " style="background-image:url();color:#666666;background-repeat:repeat; padding-top:50px; padding-bottom:5px; background-size:cover; background-position:top center;">
<div class="homepage-container-design-inner"><div class="vc_row wpb_row vc_inner vc_row-fluid vc_custom_1416731840698"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="section-title item_bottom text-center">
<div style="background-color: #cccccc;">
<span class="fa fa-bar-chart-o fa-2x" style="color: #ffffff;"></span>
</div>
<h1 style="color: ;">MY <span style="background-color: rgba(59,63,80,0.6);">SKILLS</span></h1>
</div></div></div></div></div><div class="vc_row wpb_row vc_inner vc_row-fluid customtable"><div class="wpb_column vc_column_container vc_col-sm-2"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="chart" data-percent="91">
<span class="percent">91</span>
<h4>Python</h4>
<p>
Proficiency in scripting and using frameworks with Python.
</p>
</div></div></div></div><div class="wpb_column vc_column_container vc_col-sm-2"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="chart" data-percent="60">
<span class="percent">60</span>
<h4>Java</h4>
<p>
Highly skilled at developing phone applications.
</p>
</div></div></div></div><div class="wpb_column vc_column_container vc_col-sm-2"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="chart" data-percent="75">
<span class="percent">75</span>
<h4>HTML/CSS/JAVASCRIPT</h4>
<p>
A wide range of skills to make responsive websites.
</p>
</div></div></div></div></div></div></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid make-margin-bottom-zero vc_custom_1442957099879 vc_row-has-fill"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="homepage-container-design " style="background-image:url();color:#666666;background-repeat:repeat; padding-top:27px; padding-bottom:30px; background-size:cover; background-position:top center;">
<div class="homepage-container-design-inner"><div class="vc_row wpb_row vc_inner vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-6"><div class="vc_column-inner "><div class="wpb_wrapper">
<ul class="skillBar">
<li>
<div class="skillBg">
<span data-width="90"><strong>Creative 90%</strong></span>
</div>
</li>
</ul>
<ul class="skillBar">
<li>
<div class="skillBg">
<span data-width="70"><strong>Leadership 70%</strong></span>
</div>
</li>
</ul>
<ul class="skillBar">
<li>
<div class="skillBg">
<span data-width="90"><strong>Interpersonal Communication 90%</strong></span>
</div>
</li>
</ul></div></div></div><div class="wpb_column vc_column_container vc_col-sm-6"><div class="vc_column-inner "><div class="wpb_wrapper">
<ul class="skillBar">
<li>
<div class="skillBg">
<span data-width="80"><strong>Team-working 80%</strong></span>
</div>
</li>
</ul>
<ul class="skillBar">
<li>
<div class="skillBg">
<span data-width="85"><strong>English 85%</strong></span>
</div>
</li>
</ul>
<ul class="skillBar">
<li>
<div class="skillBg">
<span data-width="100"><strong>Vietnamese 100%</strong></span>
</div>
</li>
</ul>
</div></div></div></div></div></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid make-margin-bottom-zero vc_custom_1442957123992 vc_row-has-fill"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="homepage-container-design " style="background-image:url();color:#666666;background-repeat:repeat; padding-top:70px; padding-bottom:30px; background-size:cover; background-position:top center;">
<div class="homepage-container-design-inner"><div class="vc_row wpb_row vc_inner vc_row-fluid make-text-align-center vc_custom_1416738722275"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element make-margin-bottom-zero">
<div class="wpb_wrapper">
<h1 class="white padBottom killMargin">I am available for <strong>Freelancer</strong></h1>
</div>
</div>
</div></div></div></div><div class="vc_row wpb_row vc_inner vc_row-fluid make-text-align-center make-button-margin"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><a href=# class="btn identity-hover-button" style="color:#ffffff; background-color: rgba(0,0,0,0.01); border: 2px solid #ffffff;">HIRE ME</a><a target="_blank" href=# class="btn btn-primary btn-lg identity-hover-button" style="color:#ffffff; background-color: #428bca; border: 2px solid #357ebd;"><img src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486881254/Logomakr_2pKBtG_xsultr.png" class="fa fa-download"></img> Download Resume</a></div></div></div></div></div></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid make-margin-bottom-zero vc_custom_1442957151209 vc_row-has-fill"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><div id="resume"></div><div class="homepage-container-design " style="background-image:url();color:#666666;background-repeat:repeat; padding-top:50px; padding-bottom:25px; background-size:cover; background-position:top center;">
<div class="homepage-container-design-inner"><div class="section-title item_bottom text-center">
<div style="background-color: #cccccc;">
<span class="fa fa-book fa-2x" style="color: #ffffff;"></span>
</div>
<h1 style="color: ;">MY <span style="background-color: rgba(59,63,80,0.6);">RESUME</span></h1>
</div><div class="vc_row wpb_row vc_inner vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><ul class="timeline resume-timeline list-unstyled">
</li><li class="title">My Education</li>
<li class="note item_left">
<h4><a href="https://themes.profteamsolutions.com/identity-vcard/?education=master-degree-of-computer-science">Foundation</a></h4>
<h5>Taylors College</h5>
<p class="desc">
Awarded First-overall for October-2014 course
</p>
<span class="date">2014 - 2015</span>
<span class="arrow fa fa-play"></span>
</li>
<li class="note item_right">
<h4><a href="https://themes.profteamsolutions.com/identity-vcard/?education=bechelor-degree-of-computer-science">BSc | Majoring in Computer Science</a></h4>
<h5>University of Auckland</h5>
<p class="desc">
Outstanding results throughout the years with GPA over 7.5/9. <br>
Volunteer of the university.
</p>
<span class="date">2015 TO PRESENT</span>
<span class="arrow fa fa-play"></span>
</li> <li class="start fa fa-bookmark"></li>
<li class="clear"></li>
</ul></div></div></div></div></div></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid make-margin-bottom-zero vc_custom_1442958156357 vc_row-has-fill"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><div id="clients"></div><div class="homepage-container-design " style="background-image:url();color:#666666;background-repeat:repeat; padding-top:80px; padding-bottom:45px; background-size:cover; background-position:top center;">
<div class="homepage-container-design-inner"><div class="section-title text-center">
<div style="background-color: #cccccc;">
<span class="fa fa-users fa-2x" style="color: #ffffff;"></span>
</div>
<h1 style="color: #ffffff;">MY <span style="background-color: rgba(239,239,239,0.6);">CLIENTS</span></h1>
</div><div class="vc_row wpb_row vc_inner vc_row-fluid make-margin-bottom-zero"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="parallax-overlay identity-parallax-overlay item_bottom">
<h4>What our clients saying</h4>
</div></div></div></div></div><div class="vc_row wpb_row vc_inner vc_row-fluid make-margin-bottom-sixtytwo"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="item_bottom col-lg-6 col-lg-offset-3 col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2 col-xs-10 col-xs-offset-1">
<div class="swiper-testimonial" data-speed="">
<div class="swiper-wrapper"><div class="swiper-slide white">
<p class="quote" style="color: ;">
"This guy is incredible. I absolutely love his products. My personal resume made by him works flawlessly. AND MOST IMPORTANTLY, HE'S MUCH BETTER THAN ME. Highly recommended.
"
</p>
<p class="author" style="color: ;">
Nguyen Khac Tien
</p>
<p class="company" style="color: ;">
IT Manager <a style="color:;" href="https://www.facebook.com/vausanz/">@VAUSA</a>
</p>
</div><div class="swiper-slide white">
<p class="quote" style="color: ;">
"I used to work with him in university, he helped me with my projects. It couldn't be any better."
</p>
<p class="author" style="color: ;">
Andy Nguyen
</p>
<p class="company" style="color: ;">
PhD Candidate <a style="color:;" href="https://www.facebook.com/UniofAkl/">@UoA</a>
</p>
</div><div class="swiper-slide white">
<p class="quote" style="color: ;">
"He really cares about making unique designs for their clients, and puts in incredible effort to make the whole process a real pleasure."
</p>
<p class="author" style="color: ;">
Nikko P.
</p>
<p class="company" style="color: ;">
Web Designer <a style="color:;" href="https://www.facebook.com/vausanz/">@VAUSA</a>
</p>
</div></div>
<div class="pagination-testimonial">
</div>
</div>
</div></div></div></div></div><div class="vc_row wpb_row vc_inner vc_row-fluid make-margin-bottom-zero"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="parallax-overlay identity-parallax-overlay item_bottom">
<h4>Some of my clients</h4>
</div></div></div></div></div><div class="vc_row wpb_row vc_inner vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><div class="clients"><div class="row item_fade_in"><div class="carrousel-container">
<div id="left_scroll">
<a href=""></a>
</div>
<div id="carousel_inner">
<ul class="clearfix" id="carousel_ul"><li><span><img src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486832182/UOA-NT-VC-RGB_trlil2.png" alt="mailchimp"></span></li><li><span><img src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486831926/Logomakr_68SUX9_kik5rm.png" alt="twitter"></span></li><li><span><img src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486831926/Logomakr_68SUX9_kik5rm.png" alt=""></span></li><li><span><img src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486831926/Logomakr_68SUX9_kik5rm.png" alt=""></span></li><li><span><img src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486831926/Logomakr_68SUX9_kik5rm.png" alt=""></span></li></ul>
</div>
<div id="right_scroll">
<a href=""></a>
</div>
<input type="hidden" id="hidden_auto_slide_seconds" value=0/>
</div></div></div></div></div></div></div></div></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid make-margin-bottom-zero vc_custom_1442957184499 vc_row-has-fill"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><div id="process"></div><div class="homepage-container-design " style="background-image:url();color:#666666;background-repeat:repeat; padding-top:50px; padding-bottom:84px; background-size:cover; background-position:top center;">
<div class="homepage-container-design-inner"><div class="section-title item_bottom text-center">
<div style="background-color: #cccccc;">
<span class="fa fa-cogs fa-2x" style="color: #ffffff;"></span>
</div>
<h1 style="color: #ffffff;">MY <span style="background-color: rgba(239,239,239,0.6);">PROCESS</span></h1>
</div><div class="vc_row wpb_row vc_inner vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"><ol class="process-flow list-unstyled"><li class="active">
<div class="process-node active">
<i class="fa fa-comments"></i>
</div>
<h4>Discussion</h4>
<p>
Examine the feasibility of the project. Outline the objectives, the results and how to achieve them.
</p>
<div class="line">
<div class="progress">
</div>
</div>
</li><li class="active">
<div class="process-node active">
<i class="fa fa-lightbulb-o"></i>
</div>
<h4>Idea</h4>
<p>
Ideas are explored and elaborated then reviewd to meet the criteria.
</p>
<div class="line">
<div class="progress">
</div>
</div>
</li><li class="active">
<div class="process-node active">
<i class="fa fa-desktop"></i>
</div>
<h4>Implementation</h4>
<p>
Construct and execute the project to get results in a well-organised way.
</p>
<div class="line">
<div class="progress">
</div>
</div>
</li><li class="active">
<div class="process-node active">
<i class="fa fa-flash"></i>
</div>
<h4>Review</h4>
<p>
Project is completed and ready to be delivered to the client.
</p>
</li></ol></div></div></div></div></div></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid make-margin-bottom-zero vc_custom_1450396522267 vc_row-has-fill"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner vc_custom_1450395829266"><div class="wpb_wrapper"><div id="contact"></div><div class="homepage-container-design " style="background-image:url();color:#666666;background-repeat:repeat; padding-top:50px; padding-bottom:25px; background-size:cover; background-position:top center;">
<div class="homepage-container-design-inner"><div class="section-title item_bottom text-center">
<div style="background-color: #cccccc;">
<span class="fa fa-envelope fa-2x" style="color: #ffffff;"></span>
</div>
<h1 style="color: ;">GET IN <span style="background-color: rgba(59,63,80,0.6);">TOUCH</span></h1>
</div><div class="text-center" style="color:#333333;">
<i class="fa fa-map-marker fa-3x"></i>
<p>
<br>
</p>
<p>
<a href="tel:"></a> <br><a href="tel:"></a>
</p>
</div><div class="vc_row wpb_row vc_inner vc_row-fluid make-text-align-center make-margin-bottom-fourty vc_custom_1450390061407"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner vc_custom_1450395768414"><div class="wpb_wrapper"><div class="social-icon">
<a target="_blank" href="#"><i class="fa fa- fa-3x"></i></a>
</div><div class="social-icon">
<a target="_blank" href="#"><i class="fa fa-twitter-square fa-3x"></i></a>
</div><div class="social-icon">
<a target="_blank" href="#"><i class="fa fa-google-plus-square fa-3x"></i></a>
</div><div class="social-icon">
<a target="_blank" href="#"><i class="fa fa-linkedin-square fa-3x"></i></a>
</div><div class="social-icon">
<a target="_blank" href="#"><i class="fa fa-pinterest-square fa-3x"></i></a>
</div><div class="social-icon">
<a target="_blank" href="#"><i class="fa fa-vimeo-square fa-3x"></i></a>
</div></div></div></div></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<h4 class="text-center">Drop me a Line</h4>
</div>
</div>
<div role="form" class="wpcf7" id="wpcf7-f12-p21-o1" lang="en-US" dir="ltr">
<div class="screen-reader-response"></div>
<form action="/identity-vcard/?page_id=21#wpcf7-f12-p21-o1" method="post" class="wpcf7-form" novalidate="novalidate">
<div style="display: none;">
<input type="hidden" name="_wpcf7" value="12" />
<input type="hidden" name="_wpcf7_version" value="4.6.1" />
<input type="hidden" name="_wpcf7_locale" value="en_US" />
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f12-p21-o1" />
<input type="hidden" name="_wpnonce" value="712f87b088" />
</div>
<p class="identity-contact"><span class="wpcf7-form-control-wrap your-name"><input type="text" name="your-name" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" placeholder="Name" /></span> </p>
<p class="identity-contact"><span class="wpcf7-form-control-wrap your-email"><input type="email" name="your-email" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-email wpcf7-validates-as-required wpcf7-validates-as-email" aria-required="true" aria-invalid="false" placeholder="Email" /></span> </p>
<p class="identity-contact"><span class="wpcf7-form-control-wrap your-phone"><input type="text" name="your-phone" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" placeholder="Phone" /></span> </p>
<p class="identity-contact"><span class="wpcf7-form-control-wrap your-area"><textarea name="your-area" cols="40" rows="10" class="wpcf7-form-control wpcf7-textarea wpcf7-validates-as-required" aria-required="true" aria-invalid="false" placeholder="Enter Message"></textarea></span> </p>
<p class="identity-contact"><input type="submit" value="SUBMIT" class="wpcf7-form-control wpcf7-submit" /></p>
<div class="wpcf7-response-output wpcf7-display-none"></div></form></div></div></div></div></div></div></div><div class="vc_row wpb_row vc_row-fluid make-margin-bottom-zero vc_custom_1450399897560"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner vc_custom_1450395668012"><div class="wpb_wrapper"><div class="homepage-container-design homepage-container-design-wide " style="background-image:url();color:#666666;background-repeat:repeat; padding-top:0; padding-bottom:0; background-size:auto;">
<div class="homepage-container-design-inner"><div class="wpb_gmaps_widget wpb_content_element vc_custom_1450399573245">
<div class="wpb_wrapper">
<div class="wpb_map_wraper">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d25539.593538475157!2d174.7700439718668!3d-36.85566556595725!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6d0d4816ad017c85%3A0x500ef6143a2f630!2sParnell%2C+Auckland%2C+New+Zealand!5e0!3m2!1sen!2s!4v1486838839250" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe> </div>
</div>
</div>
</div></div></div></div></div></div>
</div>
</div>
</div>
</div>
<!-- Get Page Header
================================================== -->
<footer class="text-center">
<!-- Footer Text -->
<div class="container text-center item_top">
<!-- Footer Logo
================================================== -->
<a href="#">
<img class="footer-logo" src="https://res.cloudinary.com/dch9d6ecr/image/upload/v1486823146/Logomakr_84phJS_gsvjeo.png" alt="footer logo">
</a>
<!-- Footer Copyrights Section
================================================== -->
<div class="identity-copyrights">Made by Karl himself.</div>
</div>
<!-- End Footer Text -->
</footer>
<a id="back-top" href="#" style="display: none;"><i class="fa fa-angle-up fa-2x"></i></a>
<!-- Footer End
================================================== -->
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-includes/js/jquery/ui/core.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-includes/js/jquery/ui/widget.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-includes/js/jquery/ui/mouse.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-includes/js/jquery/ui/resizable.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-includes/js/jquery/ui/draggable.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-includes/js/jquery/ui/button.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-includes/js/jquery/ui/position.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-includes/js/jquery/ui/dialog.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-includes/js/wpdialog.js?ver=4.7.2'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/plugins/contact-form-7/includes/js/jquery.form.min.js?ver=3.51.0-2014.06.20'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var _wpcf7 = {"recaptcha":{"messages":{"empty":"Please verify that you are not a robot."}}};
/* ]]> */
</script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=4.6.1'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/js/jquery.visible.js?ver=4.7.2'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/js/prof.common.js?ver=4.7.2'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/js/retina.js?ver=4.7.2'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/js/identity/scripts-top.js?ver=4.7.2'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/js/identity/scripts-bottom.js?ver=4.7.2'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/js/identity/bootstrap.min.js?ver=4.7.2'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/js/identity/jquery.isotope.min.js?ver=4.7.2'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/js/identity/jquery.sticky.js?ver=4.7.2'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/js/identity/jquery.nicescroll.min.js?ver=4.7.2'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/js/identity/jquery.flexslider.min.js?ver=4.7.2'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/js/identity/jquery.validate.min.js?ver=4.7.2'></script>
<script type='text/javascript' src='//maps.googleapis.com/maps/api/js?sensor=false&ver=4.7.2'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/js/identity/gmap-settings.js?ver=4.7.2'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/js/identity/script.js?ver=4.7.2'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/themes/Identity-vcard/js/numinate.js?ver=4.7.2'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-includes/js/wp-embed.js?ver=4.7.2'></script>
<script type='text/javascript' src='https://themes.profteamsolutions.com/identity-vcard/wp-content/plugins/js_composer/assets/js/dist/js_composer_front.min.js?ver=4.9'></script>
</body>
</html>
.customtable {
display:flex;
justify-content:space-between;
}
div.tp-rightarrow {
content:url(https://res.cloudinary.com/dch9d6ecr/image/upload/v1486838076/Logomakr_8lInAg_fbvzch.png);
}
div.tp-leftarrow {
content:url(https://res.cloudinary.com/dch9d6ecr/image/upload/v1486838410/Logomakr_4YR5YG_gyn5m5.png);
}
span.fa-briefcase{
content:url(https://res.cloudinary.com/dch9d6ecr/image/upload/v1486880425/Logomakr_4QV9NB_b9mp0r.png);
}
span.fa-bar-chart-o{
content:url(https://res.cloudinary.com/dch9d6ecr/image/upload/v1486880686/Logomakr_3fLffX_a5cjsi.png);
}
span.fa-book{
content:url(https://res.cloudinary.com/dch9d6ecr/image/upload/v1486881589/Logomakr_56bcZX_xfqsq4.png);
}
Also see: Tab Triggers