Spaces:
Build error
Build error
| <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> |