Locked lesson.
About this lesson
Exercise files
Download this lesson’s related exercise files.
Building a Resume Website - Adding Content.docx59.1 KB Building a Resume Website - Adding Content - Solution.docx
61.4 KB
Quick reference
Building a Resume Website - Adding Content
Now it's time to add some content!
When to use
Once you rough out the skeleton HTML of the page, you can add your own content.
Instructions
Add your own resume content to the page.
Be sure to space it out with <br/> line break tags inside the <p> and </p> tags of your job descriptions.
Here's an example from my own resume site for you to follow:
<div class="container">
<!-- Top Resume Info -->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><strong>Senior Full Stack Web Developer</strong></h3>
</div>
<div class="panel-body">
<div class="col-md-8">
<br/><strong>Founder Codemy.com</strong><br/>
<p align="justify">Built a responsive membership website that teaches people to code through a series of online Ruby on Rails and PHP instructional video courses that I recorded, edited, and produced with Camtasia. Built the website using a Wordpress theme that I customized; HTML/CSS/PHP/LAMP.<br/><br/></p>
</div>
<div class="col-md-4" align="right">
<br/><em>2014 - 2016</em>
</div>
<div class="col-md-8">
<strong>Founder Elder Academy, LLC. ElderAcademy.com</strong><br/>
<p align="justify">Built a responsive membership website that teaches people Internet Marketing through a series of 10 online courses comprised of 40+ hours of video that I recorded, edited, and produced with Camtasia. 400+ paying students currently enrolled. Built the website using a Wordpress theme that I customized; HTML/CSS/PHP/LAMP. <br/><br/></p>
</div>
<div class="col-md-4" align="right">
<em>2013 - 2014</em>
</div>
<div class="col-md-8">
<strong>Co-Founder Introz, Inc. YouLookGoodTogether.com</strong><br/>
<p align="justify">Hand-coded this crowd-sourced online dating website that matches people based solely on how well they look together. Built the site using HTML/CSS/PHP/MySQL/LAMP. <br/><br/></p>
</div>
<div class="col-md-4" align="right">
<em>2012 - 2013</em>
</div>
<div class="col-md-8">
<strong>Founder MarketingFool.com</strong><br/>
<p align="justify">Blog about Internet Marketing and SEO. Customized the wordpress theme, created all graphics, weote and published 300+ articles on various Internet Marketing topics, developed a desktop quick index SEO software. Wrote and published 5 books on Internet Marketing. <br/><br/></p>
</div>
<div class="col-md-4" align="right">
<em>2012 - 2013</em>
</div>
<div class="col-md-8">
<strong>Founder Flatplanet Media, LLC.</strong><br/>
<p align="justify">Built a network of 4,000+ hand-coded HTML and PHP template-driven affiliate websites monetized with Adsense Ads and Amazon Affiliate products. Generated 1+ million visitors. <br/><br/></p>
</div>
<div class="col-md-4" align="right">
<em>2010 - 2012</em>
</div>
<div class="col-md-8">
<strong>Founder Market-Tek Enterprises, Inc. Submission-Spider.com</strong><br/>
<p align="justify">Developed award-winning Submission-Spider Desktop SEO Software used by 3+ million users. Published WebPromotion-Weekly.com weekly Internet Marketing newsletter to 20,000+ subscribers. <br/><br/></p>
</div>
<div class="col-md-4" align="right">
<em>1998 - 2010</em>
</div>
<div class="col-md-8">
<strong>Co-Founder VitalBio.com</strong><br/>
<p align="justify">Developed and sold VitalBio.com portal website for the Biotech investor community. <br/><br/></p>
</div>
<div class="col-md-4" align="right">
<em>1998</em>
</div>
<div class="col-md-8">
<strong>Founder BannerClicks.com Advertising Network</strong><br/>
<p align="justify">Built one of the Internet's earliest advertising networks, 1+ million ad views in first 3 months. Sold company to publicly-traded WebQuest International , Inc. (WEBQ) at height of the first dot com boom of the late 90's <br/><br/></p>
</div>
<div class="col-md-4" align="right">
<em>1997 - 1998</em>
</div>
</div>
</div>
<br/><br/>
<!-- Programming Skill Section -->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><strong>Programming Technical Skills</strong></h3>
</div>
<div class="panel-body">
<div class="col-md-3">
<strong>Front-End Skills</strong><br/>
HTML & CSS<br/>
Javascript<br/>
Jquery<br/>
PHP<br/>
Rails<br/>
Bootstrap<br/>
Angular<br/>
Wordpress<br/>
Photoshop<br/><br/>
</div>
<div class="col-md-3">
<strong>Back-End Skills</strong><br/>
Ruby On Rails<br/>
Ruby<br/>
Some Python<br/>
Postgres Databases<br/>
MySql Databases<br/>
Amazon AWS<br/>
Microsoft Azure<br/>
Linux Devops<br/><br/>
</div>
<div class="col-md-3">
<strong>Frameworks</strong><br/>
Ruby on Rails<br/>
Angular<br/>
Wordpress<br/>
Bootstrap Responsive<br/>
Some Django<br/>
Lamp Stack<br/>
Visual Studio<br/><br/>
</div>
<div class="col-md-3">
<strong>Internet Marketing</strong><br/>
SEO<br/>
Google Analytics<br/>
Adwords<br/>
Video Production<br/>
Growth Hacking<br/>
Content Marketing<br/>
Facebook Advertising<br/>
</div>
</div>
</div>
<br/><br/>
<!-- Education -->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><strong>Education</strong></h3>
</div>
<div class="panel-body">
<div class="col-md-1"><img src="/images/washu.png" height="50"></div>
<div class="col-md-4">
<strong>Washington University in St. Louis</strong><br/>
Bachelor of Arts (B.A.)<br/>
Economics - With Honors<br/><br/>
<em>Named Artsci Scholar (top 10%)<br/>
Awarded Bassett Scholarship</em><br/><br/>
</div>
</div>
</div>
Hints & tips
- If you have an image of your school logo, add it!
- Align your job descriptions with an align="justify" tag.
Lesson notes are only available for subscribers.