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.
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Resume/CV</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.0/font/bootstrap-icons.css">
<script src="https://npmcdn.com/vue/dist/vue.js"></script>
</head>
<body>
<section id="app" class="container-fluid">
<header class="header position-relative">
<div class="headLine position-absolute"></div>
<div class="row">
<div class="col">
<h1 class="firstName text-break">
{{ firstName }}
</h1>
<h2 class="lastName text-nowrap">
{{ lastName }}
</h2>
<p class="jobTitle">
<i class="bi bi-circle-fill"></i>
<span class="text-break">
{{ jobTitle }}
</span>
</p>
</div>
<div class="col-auto d-none d-lg-block d-print-block">
<img v-bind:src.prop="photo" class="photo border border-2 border-dark rounded-circle img-fluid float-end">
</div>
</div>
<div class="middleLine position-absolute"></div>
</header>
<section class="content">
<div class="row">
<div class="col personal-details me-4">
<div class="row list-item me-5">
<div class="col-auto">
<div class="icon d-flex justify-content-center">
<i class="bi bi-geo-alt-fill" role="img" aria-label="Location"></i>
</div>
</div>
<div class="col" style="white-space: pre-line;">
<p>{{ address }}<br/>{{ city }}, {{ postalCode }}, {{ country }}</p>
</div>
</div>
<div class="row list-item me-5">
<div class="col-auto align-self-center">
<div class="icon d-flex justify-content-center">
<i class="bi bi-telephone-fill" role="img" aria-label="Telephone"></i>
</div>
</div>
<div class="col">
<a v-bind:href="'tel:'+ phone" class="text-decoration-none">
<p>{{ phone }}</p>
</a>
</div>
</div>
<div class="row list-item me-5">
<div class="col-auto align-self-center">
<div class="icon d-flex justify-content-center">
<i class="bi bi-envelope-fill" role="img" aria-label="Email"></i>
</div>
</div>
<div class="col">
<a v-bind:href="'mailto:'+ email" class="text-decoration-none">
<p>{{ email }}</p>
</a>
</div>
</div>
<div class="row mt-5 me-5">
<div class="col">
<p class="title">Education</p>
</div>
</div>
<div class="row record" v-for="e in education">
<div class="col-auto bullet">
<i class="bi bi-record-circle"></i>
</div>
<div class="col">
<p class="fw-bold text-uppercase">
{{ e.degree }}
</p>
<p class="fw-bold text-uppercase">
{{ e.school }}, {{ e.graduationDate }}
</p>
<p>{{ e.description }}</p>
</div>
</div>
<div class="row mt-5 me-5">
<div class="col p-0">
<p class="title">Links</p>
</div>
</div>
<div class="row record me-5" v-for="l in links">
<div class="col-auto bullet mb-5">
<i class="bi bi-record-circle"></i>
</div>
<div class="col">
<p>
{{ l.label }}:
<a class="text-reset" v-bind:href.prop="l.link">
{{ l.link }}
</a>
</p>
</div>
</div>
<div class="row mt-5 me-5">
<div class="col p-0">
<p class="title">Skills</p>
</div>
</div>
<div class="row">
<div class="col">
<ul class="ms-2">
<li class="pb-2" v-for="skill in skills">
{{ skill }}
</li>
</ul>
</div>
</div>
<div class="row mt-5 me-5">
<div class="col p-0">
<p class="title">Languages</p>
</div>
</div>
<div class="row">
<div class="col">
<ul class="ms-2">
<li class="pb-2" v-for="language in languages">
{{ language }}
</li>
</ul>
</div>
</div>
</div>
<div class="col col-8">
<div class="row bullet">
<div class="col-auto pt-2">
<i class="bi bi-circle-fill"></i>
</div>
<div class="col">
<p class="title">About Me</p>
</div>
</div>
<div class="row record bullet">
<div class="col-auto">
<i class="bi bi-record-circle"></i>
</div>
<div class="col">
<p style="white-space: pre-line;">{{ professionalSummary }}</p>
</div>
</div>
<div class="row mt-5">
<div class="col-auto bullet pt-2">
<i class="bi bi-circle-fill"></i>
</div>
<div class="col">
<p class="title">Work Experience</p>
</div>
</div>
<div class="row record mb-4 bullet" v-for="employment in employmentHistory">
<div class="col-auto">
<i class="bi bi-record-circle"></i>
</div>
<div class="col">
<p class="text-uppercase fw-bold position-relative">
{{ employment.jobTitle }}
<span> | {{ employment.startDate }} - {{ employment.endDate }}</span>
</p>
<p class="text-lowercase fst-italic fw-bold">
{{ employment.employer }}, {{ employment.city }}
</p>
<p class="mb-0" v-for="achievement in employment.achievements">
• {{ achievement }}
</p>
</div>
</div>
</div>
</div>
</section>
</section>
<div class="btn-group-fab">
<div>
<button onclick="javascript:window.print()" type="button" class="btn btn-main btn-primary" title="Print">
<i class="bi bi-printer fs-3"></i>
</button>
</div>
</div>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
</body>
</html>
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap');
* {
font-family: Raleway;
box-sizing: border-box;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-font-smoothing: antialiased;
text-rendering: optimizelegibility;
text-size-adjust: 100%;
outline: none !important;
}
html {
font-size: 62.5%
}
.container-fluid {
padding: 0 10% !important;
}
ul {
list-style: circle;
}
p {
font-size: 2.48262rem;
letter-spacing: 0.115103rem;
color: rgb(102, 103, 102);
word-break: break-all;
-webkit-box-pack: center;
justify-content: center;
}
.headLine {
width: 0.225693rem;
top: 0px;
left: 1rem;
height: 11.9617rem;
background-color: rgb(41, 41, 41);
}
.header {
padding-top: 17.8297rem;
padding-bottom: 10rem;
direction: ltr;
margin-bottom: 3rem;
}
.firstName {
font-weight: lighter;
text-transform: uppercase;
word-break: break-all;
color: rgb(62, 62, 62);
font-size: 6.65793rem;
line-height: 1.68;
letter-spacing: 3.89546rem;
margin-bottom: 1.12846rem;
direction: ltr;
}
.lastName {
font-weight: bold;
font-size: 9.02771rem;
text-transform: uppercase;
word-break: break-all;
padding-right: 5.64232rem;
color: rgb(62, 62, 62);
line-height: 1.09;
letter-spacing: 4.15952rem;
direction: ltr;
}
.jobTitle {
padding-right: 0px;
margin-top: 4.51385rem;
color: rgb(41, 41, 41);
span {
padding-left: 1rem;
letter-spacing: 0.710932rem;
text-transform: uppercase;
word-break: break-all;
direction: ltr;
color: rgb(76, 74, 74);
font-size: 3.04685rem;
}
}
.photo {
width: 27.2rem;
height: 27.2rem;
}
.middleLine {
width: 0.225693rem;
bottom: 3.1597rem;
left: 1rem;
height: 5.64232rem;
background-color: rgb(41, 41, 41);
}
.icon {
width: 5rem;
height: 5rem;
font-size: 2.5rem;
color: white;
background-color: rgb(62, 62, 62);
border-radius: 50%;
padding: 0.7rem;
}
a p {
word-break: break-all;
color: rgb(102, 103, 102);
}
.list-item {
padding-top: 2.03123rem;
padding-bottom: 2.03123rem;
margin-right: 1rem;
&:not(:last-child) {
border-bottom: 0.225693rem solid rgb(35, 31, 32);
}
}
.title {
width: 100%;
font-weight: bold;
font-size: 4rem;
text-transform: uppercase;
line-height: 4.5rem;
border-bottom: 1px solid rgb(35, 31, 32);
padding-top: 0rem;
padding-bottom: 3.8rem;
color: rgb(34, 33, 33);
letter-spacing: 1.01562rem;
margin-bottom: 1.8rem;
}
.personal-details {
.title {
padding-top: 4rem;
}
}
.bullet {
position: relative;
i {
font-size: 2.6rem;
}
&:before {
content: "";
position: absolute;
left: 1.9rem;
width: 0.3rem;
height: 70%;
background-color: #292929;
margin-top: 4.2rem;
}
}
.record {
padding-top: 2rem;
p {
width: 100%;
font-size: 2.7rem;
line-height: 1.33;
color: rgb(102, 103, 102);
word-break: break-word;
display: block;
}
}
li {
font-family: Raleway;
line-height: 1.33;
font-size: 2.8806rem;
color: rgb(123, 123, 123);
}
span {
color: rgb(102, 103, 102);
font-size: 2.28048rem;
line-height: 1.2;
letter-spacing: 0.5rem;
}
.btn-group-fab {
position: fixed;
width: 50px;
height: auto;
right: 20px;
bottom: 20px;
}
.btn-group-fab div {
position: relative; width: 100%;
height: auto;
}
.btn-group-fab .btn {
position: absolute;
bottom: 0;
border-radius: 50%;
display: block;
margin-bottom: 4px;
width: 40px; height: 40px;
margin: 4px auto;
}
@media print {
@page {
size: A4;
margin: 0mm;
}
html {
font-size: 24%;
}
.header {
padding-top: 10rem;
padding-bottom: 8rem;
}
.btn-group-fab {
display: none;
}
}
const resume = {
firstName: 'María Alejandra',
lastName: 'Pérez',
jobTitle: 'Front End Developer',
photo: '',
address: '--',
city: 'Medellin',
postalCode: 'Antioquia',
country: 'Colombia',
phone: '+573052529587',
email: 'nanaperez01@gmail.com',
education: [
{
school: 'Universidad EAFIT',
degree: 'Bachelor',
graduationDate: '2017',
description: 'Software Engineering'
}
],
links: [
{
label: 'GitHub',
link: 'https://github.com/nanaperez'
},
{
label: 'LinkedIn',
link: 'https://www.linkedin.com/in/maria-alejandra-perez/'
},
],
skills: [
'HTML5',
'CSS3',
'JavaScript',
'ReactJS',
'React Native',
'Ionic',
'Angular',
'Firebase',
'NativeScript',
'Unity',
'ASP.NET',
'Azure'
],
languages: ['Spanish', 'English', 'Portuguese'],
professionalSummary: `Developer with a background in web and mobile development, having 8+ years of practice and leadership building interactive experiences.
Disciplined, organized, humble and righteous person. Committed to good morals, continuous learning, innovation and development of optimal solutions.
Great enthusiastic teamwork, considered helpful, creative, assertive and cautious.`,
employmentHistory: [
{
jobTitle: 'Front End Developer',
startDate: 'Mar 2021',
endDate: 'Present',
employer: 'ADA S.A.',
city: 'Remote',
achievements: [
'I defined a modular architecture with React Native that allows multiple teams to work on the same project.',
`I created native integrations (plugins) to improve the UX of mobile apps, I've reached more than 1 million downloads with one of these side projects.`
]
},
{
jobTitle: 'Software Development Engineer',
startDate: 'Mar 2017',
endDate: 'Feb 2018',
employer: 'BevyUp (Acquired by Nordstrom)',
city: 'Remote',
achievements: [
`I led the research of new mobile Frameworks according to the needs of the company's partners to improve the performance and UX of the apps.`
]
},
{
jobTitle: 'Consultant and Software Architect',
startDate: 'Nov 2016',
endDate: 'Mar 2017',
employer: 'MVM Ingeniería de software',
city: 'Medellín',
achievements: [
'I created the baseline for the development of reactive apps using new technologies such as MeteorJS, GraphQL for rapid prototyping.',
'I configured continuous integration pipelines for new projects through cloud services with Azure and Visual Studio Team Services.'
]
},
{
jobTitle: 'Senior Developer / Tech Leader',
startDate: 'Oct 2014',
endDate: 'Nov 2016',
employer: 'Yuxi Global',
city: 'Medellín',
achievements: [
'I created a course about JS patterns for the company.',
'I designed the baseline for cross-platform mobile applications using new technologies, with these results the company became an Ionic Trusted Partner.',
'I had the opportunity to mentor a developer helping her build confidence and improve her soft skills.'
]
},
{
jobTitle: 'Tech Leader',
startDate: 'Jul 2014',
endDate: 'Oct 2014',
employer: '1Cero1 Software',
city: 'Medellín',
achievements: [
'I designed baselines for mobile application development using PhoneGap/Cordova with Ionic Framework.',
'I trained the team for the implementation of new methodologies such as ALM for the management of applications.'
]
},
{
jobTitle: 'Senior Dev Analyst',
startDate: 'Feb 2014',
endDate: 'Jun 2014',
employer: 'Aerolínea de Antioquia',
city: 'Medellín',
achievements: [
'I researched about CMS based on ASP.NET that allowed to migrate existing web apps, helping the decision-making of the executive area of the company.'
]
},
{
jobTitle: 'Software Developer',
startDate: 'Jul 2012',
endDate: 'Jan 2014',
employer: 'Pacifica Diseño',
city: 'Medellín',
achievements: [
'I designed templates with ASP.NET MVC instead of using WebForms, to avoid using server controls in order to have a better separation of responsibilities between BackEnd and FrontEnd.',
'I implemented ORMs such as Entity Framework to define strategies to manipulate the database from code.'
]
}
]
}
new Vue({
el: "#app",
data: resume
});
Also see: Tab Triggers