Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resume template #1

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added images/headshot.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
151 changes: 151 additions & 0 deletions resume.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Goofy Resume</title>
<link href="styles/style.css" rel="stylesheet" />
</head>
<body class="resume">
<header>
<div class="resume__header__text">
<h1>Goofy</h1>
<section class="resume__contact-info">
<h3>Contact:</h3>
<p>
Email: <a class="resume__contact-info__email email" href="mailto:[email protected]">[email protected]</a>
</p>
</section>
<section class="resume__objective">
<h2>Objective</h2>
<p>
Resume Objective goes here. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse pretium leo diam, et vestibulum lectus sodales at. Maecenas placerat purus quis sodales posuere. Maecenas aliquam lorem et turpis viverra sagittis. Praesent eu eleifend enim. Donec suscipit dolor ligula, ac ultrices tellus vulputate nec. Mauris non fringilla libero, sit amet tristique quam. Ut fermentum aliquet porttitor. Sed sapien nisl, tempus nec odio quis, convallis rhoncus libero. Proin consequat aliquet accumsan. Duis quam lorem, pellentesque quis nisi et, consequat bibendum risus. Sed a nunc faucibus, porttitor purus a, posuere urna. Cras efficitur fringilla facilisis.
</p>
</section>
<section class="resume__header__skills">
<h2>Skills</h2>
<ul class="resume__skills">
<li class="btn btn-primary">Comedy</li>
<li class="btn btn-primary">Acting</li>
<li class="btn btn-primary">Slapstick</li>
</ul>
</section>

</div>

<div>
<section class="resume__headshot polaroid">
<h3>Goofy Goof</h3>
<img src="images/headshot.jpg" class="resume__headshot__headshot-image" alt="headshot" id="headshot" />
</section>
<div></div>
</div>
</header>
<main class="resume__main">
<div class="resume__sample-projects resume__section resume__section">
<section class="resume__section-header">
<h2 class="resume__main__header">Experience</h2>
</section>
<section class="resume__section__content">
<ul class="resume__section_content__list">
<li class="resume__section_content__list__item">
<h2>Disneyland Attraction<span>Attraction - Orlando, FL 1960 - present</span></h2>
<ul class="resume__section__accomplishment-list">
<li>
Took 300 photos
</li>
<li>
Made employee of the month 37 times
</li>
</ul>
</li>

<li class="resume__section_content__list__item">
<h2>Cartoon Star <span>Lead Actor - Los Angelos, FL - 1926-1961</span></h2>
<ul class="resume__section__accomplishment-list">
<li>
Starring role in 87 movies and shorts
</li>
<li>
Supporting actor in 190 movies and shorts
</li>
<li>
Nominated for best actor in an animated movie 1958
</li>
</ul>
</li>
</ul>
</section>
</div>

<div class="resume__sample-projects resume__section resume__section">
<section class="resume__section-header">
<h2>Sample Projects</h2>
</section>
<section class="resume__section__content">
<ul class="resume__section_content__list">
<li class="resume__section_content__list__item">
<h2><a href="">A Goofy Movie</a> <span>1995 - Walt Disney Corp</span></h2>
<ul class="resume__section__accomplishment-list">
<li>
Grossed 300 million Ducats
</li>
<li>
Rotton Tomatoes Review of 76%
</li>
</ul>
</li>

<li class="resume__section_content__list__item">
<h2><a href="https://en.wikipedia.org/wiki/An_Extremely_Goofy_Movie">An Extremely Goofy Movie</a>
<span>2000 - Walt Disney Corp (direct-to-video)</span></h2>
<ul class="resume__section__accomplishment-list">
<li>
Mentored younger actor
</li>
<li>
Maintained 67% favorable on Rotten tomatoes
</li>
</ul>
</li>
</ul>
</section>
</div>

<div class="resume__education resume__section">
<section class="resume__section-header">
<h3>Education</h3>
</section>
<section class="resume__section__content">
<ul class="resume__section_content__list">
<li>
<h2>Florida State University</h2><span>Bachelor of Arts - Film 1970 - 1974</span>
<ul class="resume__section__accomplishment-list">
<li>
Maintained a 2.7 GPA
</li>
<li>
Won Mr. Congeneiality
</li>
</ul>
</li>
</ul>
</section>
</div>

<div class="resume__references resume__section">
<section class="resume__section-header">
<h2>References</h2>
</section>
<div class="resume__section__content">
<ul class="resume__section_content__list">
<li>
<p>Available on request</p>
</li>
</ul>
</div>
</div>
</main>
</body>
</html>
Loading