A resume made only with HTML.
Lists, tables, links, sections.
Example:
<!DOCTYPE html>
<html>
<head>
<title>My Resume</title>
</head>
<body>
<h1>John Doe</h1>
<p>Email: [email protected] | Phone: 123-456-7890</p>
<h2>Education</h2>
<ul>
<li>Bachelor in Computer Science</li>
<li>Intermediate in Pre-Engineering</li>
</ul>
<h2>Experience</h2>
<table border="1">
<tr>
<th>Company</th><th>Role</th><th>Years</th>
</tr>
<tr>
<td>ABC Tech</td><td>Intern</td><td>2024-2025</td>
</tr>
</table>
</body>
</html>
Leave a Reply