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 esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM 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.
<div class="page" id="resume">
<header>
<div class="grid">
<div class="logo">
<img src="https://www.jmichaliga.com/images/jm.svg"/>
</div>
<div class="headline">
<h1>Justin Michaliga</h1>
<h2>Product Engineer</h2>
<span>
<a href="mailto:justin.michaliga+codepen@gmail.com">justin.michaliga@gmail.com</a> | <a href="https://github.com/jmichaliga"/>github.com/jmichaliga</a> | <a href="http://j13a.com">j13a.com</a></span>
</div>
</div>
</header>
<div class="grid">
<aside>
<section id="education">
<Education/>
</section>
<section id="skillset">
<Skillset source="skillset"/>
</section>
<section id="tools">
<Skillset source="tools"/>
</section>
<section id="awards">
<Awards/>
</section>
</aside>
<main>
<section id="experience">
<Experience/>
</section>
</main>
</div>
<footer>
<address>
102 Diamond St.
Brooklyn, NY 11222 |
<a href="tel:4106100171">(410) 610 - 0171</a> |
<a href="mailto:justin.michaliga@gmail.com">justin.michaliga@gmail.com</a>
</address>
</footer>
</div>
@mixin horizontal-gradient($from, $to, $stop: 100%) {
/* fallback/image non-cover color */
background-color: $from;
/* Firefox 3.6+ */
background-image: -moz-linear-gradient(left, $from 0%, $to $stop);
/* Safari 4+, Chrome 1+ */
background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, $from), color-stop($stop, $to));
/* Safari 5.1+, Chrome 10+ */
background-image: -webkit-linear-gradient(left, $from 0%, $to $stop);
/* Opera 11.10+ */
background-image: -o-linear-gradient(left, $from 0%, $to $stop);
/* IE10+ */
background: -ms-linear-gradient(left, $from 0%, $to $stop);
/* Standard */
background: linear-gradient(to right, $from 0%, $to $stop);
/* IE6-9 */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=1 );
}
@import url('https://fonts.googleapis.com/css?family=Roboto:100i,400,400i,700,700i|Song+Myung:200,400');
$dark-red: rgba(170,0,60,1);
$red: rgba(250,25,103,1);
$yellow: rgba(250, 240, 23, 1);
$green: #19FA67;
$blue: rgba(0,80,200,1);
$bgBlue: #137;
$bgYellow: #FB9;
$white: rgba(255,255,255,1);
$bg: rgba(5,50,75,1);
$grey: rgba(0,0,20,0.5);
$light-grey: rgba(0,0,100,0.1);
$serif: 'Song Myung', serif;
$sans-serif: 'Roboto', sans-serif;
* { font-family: $sans-serif; }
a{ color: $blue; }
body{
background: radial-gradient(ellipse farthest-side at 100% 100%, $bgYellow 10%, $red 30%, $bgBlue 109%);
}
.page{
width: 800px;
margin: 48px auto;
background: $white;
padding: 48px;
border-radius: 4px;
}
.grid {
display: grid;
grid-template-columns: 1fr 2fr;
grid-gap: 1em;
}
h1{
font-family: $serif;
font-size: 3em;
}
h2{
font-family: $sans-serif;
font-weight: 100;
color: $white;
padding: 5px 10px;
text-transform: uppercase;
@include horizontal-gradient($dark-red, $red, 50%);
transform: skew(-10deg);
}
header{
h1, h2, span{ text-align: right; }
.logo{
width: 126px;
height: 126px;
img {
width: 126px;
height: 126px;
}
}
.headline{
display: flex;
flex-direction: column;
h1{margin: 0;}
h2{margin-top: 8px; margin-bottom: 4px;}
span{
color: $grey;
}
}
}
aside{
section{
width: 100%;
float: left;
}
.skills{
label{
float: left;
background: $light-grey;
border-radius: 8px;
padding: 4px;
margin: 4px;
font-size: 0.7em;
opacity: 0.7;
transition-duration: 400ms;
&:hover{
opacity: 1;
background: $red;
color: $white;
cursor: pointer;
}
}
}
.awards{
list-style: none;
padding-left: 0;
font-size: 0.8em;
}
}
section{
h3{
font-family: $sans-serif;
font-style: italic;
font-weight: 700;
color: $red;
text-transform: uppercase;
margin-bottom: 4px;
border-bottom: 1px solid $red;
}
strong{
font-weight: 700;
}
small{
color: $grey;
font-size: 0.8em;
text-transform: uppercase;
}
address{
font-size: 0.8em;
}
label{
color: $grey;
font-size: 0.8em;
}
.degree{
margin-bottom: 16px;
font-size: 0.8em;
display: flex;
flex-direction: column;
h4{
color: $grey;
margin: 0px;
}
}
article{
.flex{
display: flex;
justify-content: space-between;
}
.align-left{
text-align: left;
}
.align-right{
text-align: right;
}
h4{margin: 0;}
h5{margin: 0; color: $grey;}
p{
font-family: $serif;
color: $grey;
font-weight: 200;
font-size: 0.8em;
letter-spacing: -0.025em;
margin-top: 4px;
}
}
}
footer{
width: 100%;
color: $grey;
font-style: normal;
font-size: 0.9em;
text-align: center;
border-top: 1px solid $red;
padding: 8px;
}
Vue.component('Experience', {
data () {
return {
positions: [
{
title:'Head of Engineering / Fractional CTO',
company:'Venture Studio',
location: 'New York, NY',
timeline: 'June 2022 — Present',
description: `Leading the Software Development processes on the front-lines of foresight building and investing in the future of
FinTech, InsurTech, HealthTech, web3 and the Metaverse.`
},
{
title:'Javascript Engineer / Consultant',
company:'SmartNode, LLC',
location: 'Brooklyn, NY',
timeline: 'January 2015 — Present',
description: `Full-stack Javascript application development and project management.
Typical stack consists of Node APIs on Angular / React / Vue Frontends.`
},
{
title:'Software Engineer',
company:'Courier, Inc (YC19)',
location: 'San Francisco, CA (Remote)',
timeline: 'December 2019 — July 2020',
description: `The smart way to design and deliver notifications. Connect and orchestrate messages through different channels to your customers with consistent messaging. Full-stack Typescript application development. Customer App developed with Next.js / SlateJS editor. Backend with AWS serverless resources on Node v12.`
},
{
title: 'Staff Engineer, Fullstack',
company:'Knotel',
location: 'New York, NY',
timeline: 'July 2018 — November 2019',
description: `Revolutionizing the GraphQL implementations that not only push the technology forward through use in the CRE and Arch industry, but as all engineering as a whole. Lead development of several applications, systems architecture, patterns, as well as our design system. Stack is React, Node, Apollo, AWS, Github Actions, running on Kubernetes.`
},
{
title:'Lead Frontend Engineer',
company:'Capsule8, Inc',
location: 'Brooklyn, NY',
timeline: 'June 2017 — December 2017',
description: `Architected Capsule8’s Security dashboard console. Helped hire developers and built both the UI and UX teams within this smart and stealthy startup. Led Junior level developers as well as oversaw contract partnerships.`
},
{
title:'Senior UI Engineer / Consultant',
company:'Cake & Arrow <small>(formerly Alexander Interactive)</small>',
location: 'New York, NY',
timeline: 'October 2013 — January 2015',
description: `Developed proprietary software for a Fortune 50 client utilizing AngularJS with a team under the agile methodology. Similiarly sharing knowledge throughout the company crossing between the development and design teams.`
},
{
title:'UX / UI Development Consultant',
company:'Celtra, Milk Studios, Layerframe',
location: 'New York, NY',
timeline: 'October 2012 — December 2013',
description: `Created custom mobile advertising campaigns, lead development and oversaw teams on several high-end mobile/web projects including those with Budweiser, Burberry, Jeep, McDonalds, Nickelodeon, Spotify, SuperCell, Theory and several more.`
},{
title:'Creative Technologist',
company:'Medialets',
location: 'New York, NY',
timeline: 'October 2010 — October 2012',
description: `Lead Developer in the Rich Media Mobile Advertising space. Direct communication of best practices with creative, technical, and agency partners. Award Winning Innovation in the mobile space utilizing HTML5 elements, CSS animations, touch events, and js frameworks.`
},
{
title:'Interactive Developer',
company:'Warschawski',
location: 'Baltimore, MD',
timeline: 'August 2009 — October 2010',
description: 'Created interactive solutions for clients in need of online branding. A custom content management system was created in order to give customers control of their content without need to be onboarded into a complex system. Logo creation, wireframing, and branding solutions were also part of this creative role.'
},
{
title:'Front-End Developer',
company:'Inside Lacrosse',
location: 'Baltimore, MD',
timeline: 'December 2008 — August 2009',
description: 'Redeveloped InsideLacrosse.com onto the Drupal6 Platform while creating smaller applications for custom polls, magazine revenue, and archival projects.'
},
{
title:'Web Applications Developer',
company:'no|inc',
location: 'Baltimore, MD',
timeline: 'August 2008 — December 2008',
description: 'Developed Software for various companies in an agency capacity. Specialized in interactive interfaces with PHP backends.'
},
{
title:'Web Applications Developer',
company:'CSD Architects',
location: 'Baltimore, MD',
timeline: 'June 2007 — August 2008',
description: 'Designed and developed an internal intranet which powered content for Marketing purposes including a new website presence.'
},
]
}
},
template: `
<div>
<h3>Experience</h3>
<article class="item" v-for="pos in positions">
<div class="flex">
<div class="align-left">
<h4 v-html="pos.title"></h4>
<h5 v-html="pos.company"></h5>
</div>
<div class="align-right">
<small v-html="pos.timeline"></small>
<address v-html="pos.location"></address>
</div>
</div>
<p>
{{pos.description}}
</p>
</article>
</div>
`
});
Vue.component('Awards', {
data () {
return {
awards: [
{
title: 'Proposed Speaker, ReactDay NYC',
date: 'October 2020'
},
{
title: 'Speaker !!Con',
date: 'May 2020'
},
{
title: 'Speaker, VueNYC',
date: 'October 2017'
},
{
title: 'Best iPad/Tablet Advertising, Digiday Mobi Awards',
date: '2012'
},
{
title: 'Best Mobile Branding, Digiday Mobi Awards',
date: '2012'
},
{
title: 'Mobile Mentor, Startup Weekend NYC',
date: '2011'
},
{
title: 'Javascript Instructor, General Assembly',
date: '2010 — 2012'
},
{
title: 'Co-Founder, Refresh Baltimore',
date: '2008'
},
]
}
},
template: `
<div>
<h3>Awards & Accolades</h3>
<ul class="awards" v-for="award in awards">
<li>
<strong v-html="award.title"></strong>
<small v-html="award.date"></small>
</li>
<ul>
</div>
`
})
Vue.component('Skillset', {
props: ['source'],
created(){
this.sourceset = this.source === 'skillset' ? this.skillset.sort() : this.tools.sort()
},
data(){
return {
skillset: [ 'AngularJS','Vue','React','Redux','Expo','React Native','Apollo','GraphQL','Node.JS','Express','Passport','TypeScript','Babel ','ESLint','D3','Lodash','Bootstrap','HTML5','CSS3','Javascript','ES5(6)','SASS','Theme-UI','Styled-Components','Styled-System','PostgreSQL','SQLite','MongoDB','Firebase','REST','SVG','Icon Development','Interface Design','Debian Linux','OSX','Agile Methodologies'],
tools: ['Git','Github', 'Heroku','AWS','Docker','Now','Kubernetes','Photoshop','Illustrator','Sketch','Figma','NPM','Yarn','Webpack','Parcel','Vim','VSCode','Gatsby','Next.JS'],
sourceset: null
}
},
ready(){
sourceset = skills
},
template: `
<div>
<h3>{{source}}</h3>
<div class="skills" v-for="s in sourceset">
<label>{{s}}</label>
</div>
</div>
`
})
Vue.component('Education', {
data(){
return {
universities: [
{
university:{
name: 'Maryland Institute College of Art',
date: 'August 2020 – December 2021',
location: 'Baltimore, MD'
},
degrees:[
{
type: 'Masters of Professional Studies',
major: 'User Experience Design',
},
]
}, {
university:{
name: 'Salisbury University',
date: 'August 2002 – May 2007',
location: 'Salisbury, MD'
},
degrees:[
{
type: 'Bachelors of Science',
major: 'Computer Science',
minor: 'Mathematics'
},
{
type: 'Bachelors of Arts',
major: 'Art',
concentration: 'Graphic Design'
},
]
}
]
}
},
template: `
<div>
<h3>Education</h3>
<div v-for="university in universities">
<strong>{{university.university.name}}</strong><br>
<small v-html="university.university.date"></small><br>
<address v-html="university.university.location"></address><br>
<div class="degree" v-for="degree in university.degrees">
<h4>{{degree.type}}</h4>
<div>
<label>Major:</label> {{degree.major}} <br>
<label v-if="degree.minor">Minor:</label> {{degree.minor}}
<label v-if="degree.concentration">Concentration:</label> {{degree.concentration}}
</div>
</div>
</div>
</div>
`
})
new Vue({
el: '#resume'
})
Also see: Tab Triggers