Untitled
unknown
plain_text
a month ago
1.0 kB
1
Indexable
Never
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Your Name - Photography</title> <link rel="stylesheet" href="style.css"> </head> <body> <header> <nav> <ul> <li><a href="#home">Home</a></li> <li><a href="#portfolio">Portfolio</a></li> <li><a href="#about">About</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav> </header> <main> <section id="home"> <h1 class="typewriter">Your Name Photography</h1> <div class="slideshow"> <!-- Add your images here --> <img src="image1.jpg" alt="Photo 1"> <img src="image2.jpg" alt="Photo 2"> <img src="image3.jpg" alt="Photo 3"> </div> </section> </main> <script src="script.js"></script> </body> </html>
Leave a Comment