Advertisement
Group_Coder

Example of Html Script.

Sep 29th, 2023
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>My Web Page</title>
  5. <link rel="stylesheet" href="styles.css">
  6. </head>
  7. <body>
  8. <header>
  9. <h1>Welcome to My Website</h1>
  10. </header>
  11.  
  12. <nav>
  13. <ul>
  14. <li><a href="#">Home</a></li>
  15. <li><a href="#">About</a></li>
  16. <li><a href="#">Contact</a></li>
  17. </ul>
  18. </nav>
  19.  
  20. <main>
  21. <section>
  22. <h2>About Us</h2>
  23. <p>We are a team of developers...</p>
  24. </section>
  25.  
  26. <section>
  27. <h2>Contact Information</h2>
  28. <p>Email: [email protected]</p>
  29. <p>Phone: (123) 456-7890</p>
  30. </section>
  31. </main>
  32.  
  33. <footer>
  34. <p>&copy; 2023 My Website. All rights reserved.</p>
  35. </footer>
  36. </body>
  37. </html>
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement