HTML Resume

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>
&lt;li&gt;Bachelor in Computer Science&lt;/li&gt;
&lt;li&gt;Intermediate in Pre-Engineering&lt;/li&gt;
</ul> <h2>Experience</h2> <table border="1">
&lt;tr&gt;
  &lt;th&gt;Company&lt;/th&gt;&lt;th&gt;Role&lt;/th&gt;&lt;th&gt;Years&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td&gt;ABC Tech&lt;/td&gt;&lt;td&gt;Intern&lt;/td&gt;&lt;td&gt;2024-2025&lt;/td&gt;
&lt;/tr&gt;
</table> </body> </html>

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *