Resume_builder / templates /template1.html
Shami96's picture
Create templates/template1.html
0cb019c verified
raw
history blame contribute delete
598 Bytes
<!DOCTYPE html>
<html>
<head>
<style>
body { font-family: Arial, sans-serif; margin: 40px; color: #333; }
h1 { color: #2a9d8f; }
h2 { border-bottom: 1px solid #ccc; padding-bottom: 5px; margin-top: 30px; }
ul { padding-left: 20px; }
</style>
</head>
<body>
<h1>{{ name }}</h1>
<p><strong>Email:</strong> {{ email }} | <strong>Phone:</strong> {{ phone }}</p>
<h2>Skills</h2>
<ul>
{% for skill in skills %}
<li>{{ skill }}</li>
{% endfor %}
</ul>
<h2>Experience</h2>
<p>{{ experience }}</p>
</body>
</html>