-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
35 lines (35 loc) · 945 Bytes
/
resume.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>My Resume</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="resume.html">Resume</a></li>
</ul>
</nav>
<section>
<h2>[Your Name]</h2>
<h3>Contact Information</h3>
<p>Email: [Your Email]</p>
<p>Phone: [Your Phone Number]</p>
<h3>Education</h3>
<p>[Your Education Details]</p>
<h3>Work Experience</h3>
<p>[Your Work Experience Details]</p>
<h3>Skills</h3>
<p>[Your Skills]</p>
</section>
<footer>
<p>© 2024 [Your Name]. All rights reserved.</p>
</footer>
</body>
</html>