Spaces:
Build error
Build error
Create templates/template1.html
Browse files- templates/template1.html +25 -0
templates/template1.html
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<style>
|
| 5 |
+
body { font-family: Arial, sans-serif; margin: 40px; color: #333; }
|
| 6 |
+
h1 { color: #2a9d8f; }
|
| 7 |
+
h2 { border-bottom: 1px solid #ccc; padding-bottom: 5px; margin-top: 30px; }
|
| 8 |
+
ul { padding-left: 20px; }
|
| 9 |
+
</style>
|
| 10 |
+
</head>
|
| 11 |
+
<body>
|
| 12 |
+
<h1>{{ name }}</h1>
|
| 13 |
+
<p><strong>Email:</strong> {{ email }} | <strong>Phone:</strong> {{ phone }}</p>
|
| 14 |
+
|
| 15 |
+
<h2>Skills</h2>
|
| 16 |
+
<ul>
|
| 17 |
+
{% for skill in skills %}
|
| 18 |
+
<li>{{ skill }}</li>
|
| 19 |
+
{% endfor %}
|
| 20 |
+
</ul>
|
| 21 |
+
|
| 22 |
+
<h2>Experience</h2>
|
| 23 |
+
<p>{{ experience }}</p>
|
| 24 |
+
</body>
|
| 25 |
+
</html>
|