Untitled
unknown
plain_text
a year ago
1.3 kB
2
Indexable
Never
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Artist Name - Portfolio</title> <link rel="stylesheet" href="styles.css"> </head> <body> <header> <nav> <ul> <li><a href="#about">About</a></li> <li><a href="#portfolio">Portfolio</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav> </header> <section id="about"> <h1>About Me</h1> <p>Write a brief introduction about yourself and your art here.</p> </section> <section id="portfolio"> <h1>Portfolio</h1> <!-- Add your artwork and descriptions here --> <div class="artwork"> <img src="artwork1.jpg" alt="Artwork 1"> <p>Artwork description goes here.</p> </div> <div class="artwork"> <img src="artwork2.jpg" alt="Artwork 2"> <p>Artwork description goes here.</p> </div> <!-- Add more artwork items as needed --> </section> <section id="contact"> <h1>Contact Me</h1> <p>Contact information and a contact form can be added here.</p> </section> <footer> <p>© 2023 Artist Name</p> </footer> </body> </html>