Spaces:
Build error
Build error
Create templates/template3.html
Browse files- templates/template3.html +26 -0
templates/template3.html
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<style>
|
| 5 |
+
body { font-family: 'Helvetica Neue', sans-serif; margin: 50px; color: #444; }
|
| 6 |
+
h1 { font-size: 36px; border-bottom: 2px solid #555; padding-bottom: 10px; }
|
| 7 |
+
h2 { font-size: 20px; margin-top: 30px; color: #777; }
|
| 8 |
+
ul { padding-left: 20px; }
|
| 9 |
+
.contact { margin-bottom: 20px; font-size: 14px; }
|
| 10 |
+
</style>
|
| 11 |
+
</head>
|
| 12 |
+
<body>
|
| 13 |
+
<h1>{{ name }}</h1>
|
| 14 |
+
<div class="contact">{{ email }} | {{ phone }}</div>
|
| 15 |
+
|
| 16 |
+
<h2>Skills</h2>
|
| 17 |
+
<ul>
|
| 18 |
+
{% for skill in skills %}
|
| 19 |
+
<li>{{ skill }}</li>
|
| 20 |
+
{% endfor %}
|
| 21 |
+
</ul>
|
| 22 |
+
|
| 23 |
+
<h2>Experience</h2>
|
| 24 |
+
<p>{{ experience }}</p>
|
| 25 |
+
</body>
|
| 26 |
+
</html>
|