Skip to content

Commit

Permalink
my resume that I will link with my homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmad12341 authored Dec 26, 2023
1 parent 7141f4b commit 26a7fc5
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions resume.html
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>

0 comments on commit 26a7fc5

Please sign in to comment.