Resume_builder / templates /template3.html
Shami96's picture
Create templates/template3.html
d5a8f91 verified
raw
history blame contribute delete
672 Bytes
<!DOCTYPE html>
<html>
<head>
<style>
body { font-family: 'Helvetica Neue', sans-serif; margin: 50px; color: #444; }
h1 { font-size: 36px; border-bottom: 2px solid #555; padding-bottom: 10px; }
h2 { font-size: 20px; margin-top: 30px; color: #777; }
ul { padding-left: 20px; }
.contact { margin-bottom: 20px; font-size: 14px; }
</style>
</head>
<body>
<h1>{{ name }}</h1>
<div class="contact">{{ email }} | {{ phone }}</div>
<h2>Skills</h2>
<ul>
{% for skill in skills %}
<li>{{ skill }}</li>
{% endfor %}
</ul>
<h2>Experience</h2>
<p>{{ experience }}</p>
</body>
</html>