Untitled
unknown
plain_text
10 months ago
2.4 kB
3
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>David Panek - Entrepreneur & Designer</title> <style> body { font-family: 'Helvetica', 'Futura', sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; color: #333; } .container { width: 80%; margin: 0 auto; padding: 20px; } header { background: #333; color: #fff; padding: 20px 0; text-align: center; } header h1 { font-size: 2.5em; margin: 0; } .about, .business, .contact { margin: 20px 0; padding: 20px; background: #fff; border-radius: 8px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } h2 { font-size: 2em; margin-bottom: 10px; } p { font-size: 1.2em; line-height: 1.6; } .contact a { color: #333; text-decoration: none; border-bottom: 1px solid #333; } </style> </head> <body> <header> <div class="container"> <h1>David Panek</h1> <p>Entrepreneur & Graphic Designer</p> </div> </header> <div class="container"> <section class="about"> <h2>About Me</h2> <p>Hello! I'm David Panek, an entrepreneur and graphic designer. I'm passionate about building brands and promoting businesses. With my diverse skill set, I aim to create impactful and memorable experiences.</p> </section> <section class="business"> <h2>Unintended</h2> <p>I'm focused on developing my brand, Unintended, which encompasses various sectors including travel and fashion. My goal is to establish a unique and recognizable brand that resonates with people across different industries.</p> </section> <section class="contact"> <h2>Contact</h2> <p>If you'd like to get in touch, please email me at <a href="mailto:davidpanek@example.com">davidpanek@example.com</a>.</p> </section> </div> </body> </html>
Editor is loading...