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