Resume_builder / templates /template2.html
Shami96's picture
Create templates/template2.html
571c6b9 verified
raw
history blame contribute delete
725 Bytes
<!DOCTYPE html>
<html>
<head>
<style>
body { font-family: 'Georgia', serif; margin: 40px; background-color: #f9f9f9; color: #222; }
.header { background-color: #1e3a8a; color: white; padding: 20px; }
.section { margin-top: 30px; }
ul { padding-left: 20px; }
</style>
</head>
<body>
<div class="header">
<h1>{{ name }}</h1>
<p>{{ email }} | {{ phone }}</p>
</div>
<div class="section">
<h2>Skills</h2>
<ul>
{% for skill in skills %}
<li>{{ skill }}</li>
{% endfor %}
</ul>
</div>
<div class="section">
<h2>Experience</h2>
<p>{{ experience }}</p>
</div>
</body>
</html>