Advertisement
Hasli4

Untitled

Feb 3rd, 2025
114
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.05 KB | None | 1 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 Awesome Website</title>
  7. </head>
  8. <body>
  9. <header>
  10.     <div class="container">
  11.         <h1>Welcome to My Website</h1>
  12.         <nav>
  13.             <ul>
  14.                 <li><a href="#home">Home</a></li>
  15.                 <li><a href="#about">About</a></li>
  16.                 <li><a href="#services">Services</a></li>
  17.                 <li><a href="#contact">Contact</a></li>
  18.             </ul>
  19.         </nav>
  20.     </div>
  21. </header>
  22.  
  23. <section id="home" class="section">
  24.     <div class="container">
  25.         <h2>Home</h2>
  26.         <p>This is the home section of my website. Welcome!</p>
  27.         <p><a href="#">Learn more</a></p>
  28.     </div>
  29. </section>
  30.  
  31. <section id="about" class="section">
  32.     <div class="container">
  33.         <h2>About</h2>
  34.         <p>This is the about section.</p>
  35.         <p>Here you can Learn more about me.</p>
  36.         <p><a href="#">Learn more</a></p>
  37.     </div>
  38. </section>
  39.  
  40. <section id="services" class="section">
  41.     <div class="container">
  42.         <h2>Services</h2>
  43.         <ul>
  44.             <li>Web Design</li>
  45.             <li>Graphic Design</li>
  46.             <li>SEO Optimization</li>
  47.         </ul>
  48.         <p><a href="#">Learn more</a></p>
  49.     </div>
  50. </section>
  51.  
  52. <section id="contact" class="section">
  53.     <div class="container">
  54.         <h2>Contact</h2>
  55.         <p>You can reach out to me via email: info@example.com</p>
  56.         <p><a href="#">Learn more</a></p>
  57.     </div>
  58. </section>
  59.  
  60. <footer>
  61.     <div class="container">
  62.         <p>&copy; 2024 My Awesome Website</p>
  63.     </div>
  64. </footer>
  65.  
  66. </body>
  67. </html>
  68.  
  69. body{
  70. text-align: center;
  71. background-color: rgb(0, 0, 0);
  72. }
  73.  
  74. h1{
  75. font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
  76. text-align: center;
  77. color: rgb(111, 11, 224);
  78. font-size: 30px;
  79. }
  80.  
  81. p{
  82. font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
  83. text-align: center;
  84. color: rgb(111, 11, 224);
  85. }
  86.  
  87. img{
  88. width: 500px;
  89. border-radius: 20px;
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement