Untitled
unknown
plain_text
10 months ago
2.0 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>Nasty C</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f0f0f0; } header { background-color: #333; color: #fff; padding: 20px; text-align: center; } nav { background-color: #444; padding: 10px 20px; text-align: center; } nav a { color: #fff; text-decoration: none; margin: 0 10px; font-size: 18px; } nav a:hover { color: #ff9900; } section { padding: 20px; } footer { background-color: #333; color: #fff; text-align: center; padding: 20px; position: fixed; bottom: 0; width: 100%; } </style> </head> <body> <header> <h1>Nasty C</h1> </header> <nav> <a href="#about">About</a> <a href="#music">Music</a> <a href="#gallery">Gallery</a> <a href="#contact">Contact</a> </nav> <section id="about"> <h2>About Nasty C</h2> <p>Nasty C is a South African rapper known for his unique style and powerful lyrics.</p> </section> <section id="music"> <h2>Music</h2> <p>Listen to Nasty C's latest tracks and albums.</p> </section> <section id="gallery"> <h2>Gallery</h2> <p>Check out photos and videos of Nasty C's performances and events.</p> </section> <section id="contact"> <h2>Contact</h2> <p>Get in touch with Nasty C for bookings and collaborations.</p> </section> <footer> <p>© 2024 Nasty C</p> </footer> </body> </html>
Editor is loading...
Leave a Comment