Advertisement
sriyanto

index-profile

May 11th, 2024
672
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.27 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>My Portfolio</title>
  7.     <link rel="stylesheet" href="styles.css">
  8. </head>
  9. <body>
  10.     <header>
  11.         <h1>My Portfolio</h1>
  12.         <button id="mode-switch">Switch Mode</button>
  13.  
  14.     </header>
  15.     <section id="profile">
  16.         <img src="/img/1.jpg" alt="Profile Picture">
  17.         <h2>About Me</h2>
  18.         <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer eget ante id nisl pulvinar vestibulum.</p>
  19.     </section>
  20.     <section id="gallery">
  21.       <h2>Photo Gallery</h2>
  22.       <div class="gallery-container">
  23.           <button id="prevBtn">&lt;</button>
  24.           <div class="gallery">
  25.               <img src="/img/2.jpg" alt="Gallery Image 1">
  26.               <img src="/img/3.jpg" alt="Gallery Image 2">
  27.               <img src="/img/4.jpg" alt="Gallery Image 3">
  28.               <img src="/img/5.jpg" alt="Gallery Image 1">
  29.               <img src="/img/6.jpg" alt="Gallery Image 2">
  30.               <img src="/img/7.jpg" alt="Gallery Image 3">
  31.               <img src="/img/8.jpg" alt="Gallery Image 2">
  32.               <img src="/img/9.jpg" alt="Gallery Image 3">
  33.               <!-- Add more images as needed -->
  34.           </div>
  35.           <button id="nextBtn">&gt;</button>
  36.       </div>
  37.   </section>
  38.     <section id="sports">
  39.         <h2>My Favorite Sports</h2>
  40.         <ul>
  41.             <li>Football</li>
  42.             <li>Basketball</li>
  43.             <li>Tennis</li>
  44.             <!-- Add more sports as needed -->
  45.         </ul>
  46.     </section>
  47.     <section id="books">
  48.         <h2>My Favorite Books</h2>
  49.         <ul>
  50.             <li>The Great Gatsby</li>
  51.             <li>To Kill a Mockingbird</li>
  52.             <li>1984</li>
  53.             <!-- Add more books as needed -->
  54.         </ul>
  55.     </section>
  56.     <section id="contact">
  57.         <h2>Contact Me</h2>
  58.         <form id="contact-form">
  59.             <input type="text" id="name" placeholder="Your Name" required>
  60.             <input type="email" id="email" placeholder="Your Email" required>
  61.             <textarea id="message" placeholder="Your Message" required></textarea>
  62.             <button type="submit">Send</button>
  63.         </form>
  64.     </section>
  65.     <script src="script.js"></script>
  66. </body>
  67. </html>
  68.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement