-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
my resume that I will link with my homepage
- Loading branch information
1 parent
7141f4b
commit 26a7fc5
Showing
1 changed file
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>My Resume</title> | ||
<style> | ||
/* Basic styling */ | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 20px; | ||
} | ||
h1, h2, h3 { | ||
margin-bottom: 5px; | ||
} | ||
.section { | ||
margin-bottom: 15px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<header> | ||
<h1>John Doe</h1> | ||
<p>Web Developer</p> | ||
<p>Email: [email protected] | Phone: 123-456-7890 | Location: City, Country</p> | ||
</header> | ||
|
||
<hr> | ||
|
||
<section class="section"> | ||
<h2>Summary</h2> | ||
<p>A brief summary about yourself and your career objectives.</p> | ||
</section> | ||
|
||
<section class="section"> | ||
<h2>Experience</h2> | ||
<h3>Web Developer - ABC Company</h3> | ||
<p>Month Year - Month Year</p> | ||
<ul> | ||
<li>Description of responsibilities and achievements.</li> | ||
<li>Another point highlighting your experience.</li> | ||
</ul> | ||
<!-- Add more experiences as needed --> | ||
</section> | ||
|
||
<section class="section"> | ||
<h2>Education</h2> | ||
<h3>Bachelor of Science in Computer Science - XYZ University</h3> | ||
<p>Graduation Year</p> | ||
<p>Description of courses or any notable achievements.</p> | ||
<!-- Add more education details if applicable --> | ||
</section> | ||
|
||
<section class="section"> | ||
<h2>Skills</h2> | ||
<ul> | ||
<li>Programming languages: HTML, CSS, JavaScript, etc.</li> | ||
<li>Frameworks: React, Angular, etc.</li> | ||
<li>Other skills or tools relevant to your field.</li> | ||
</ul> | ||
</section> | ||
|
||
<section class="section"> | ||
<h2>References</h2> | ||
<p>Available upon request.</p> | ||
</section> | ||
|
||
<footer> | ||
<p>Contact: [email protected] | Phone: 123-456-7890 | LinkedIn: linkedin.com/in/johndoe</p> | ||
</footer> | ||
</div> | ||
</body> | ||
</html> |