Advertisement
Guest User

Untitled

a guest
Sep 29th, 2024
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.60 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Bugatti Cars</title>
  8. <style>
  9. body {
  10. font-family: Arial, sans-serif;
  11. margin: 0;
  12. padding: 0;
  13. background-color: #f4f4f4;
  14. }
  15.  
  16. header {
  17. background: #000;
  18. color: #fff;
  19. padding: 10px 0;
  20. text-align: center;
  21. }
  22.  
  23. nav ul {
  24. list-style: none;
  25. padding: 0;
  26. }
  27.  
  28. nav ul li {
  29. display: inline;
  30. margin: 0 15px;
  31. }
  32.  
  33. nav a {
  34. color: #fff;
  35. text-decoration: none;
  36. }
  37.  
  38. .banner {
  39. background: #eaeaea;
  40. padding: 20px;
  41. text-align: center;
  42. }
  43.  
  44. .models {
  45. padding: 20px;
  46. }
  47.  
  48. .model {
  49. margin: 20px 0;
  50. text-align: center;
  51. }
  52.  
  53. .model img {
  54. max-width: 100%;
  55. height: auto;
  56. border: 1px solid #ccc;
  57. }
  58.  
  59. footer {
  60. background: #000;
  61. color: #fff;
  62. text-align: center;
  63. padding: 10px 0;
  64. position: relative;
  65. bottom: 0;
  66. width: 100%;
  67. }
  68. </style>
  69. </head>
  70. <body>
  71. <header>
  72. <h1>Bugatti Cars</h1>
  73. <nav>
  74. <ul>
  75. <li><a href="#models">Models</a></li>
  76. <li><a href="#history">History</a></li>
  77. <li><a href="#contact">Contact</a></li>
  78. </ul>
  79. </nav>
  80. </header>
  81.  
  82. <main>
  83. <section class="banner">
  84. <h2>Welcome to the World of Bugatti</h2>
  85. <p>Discover the luxury, speed, and elegance of Bugatti cars.</p>
  86. </section>
  87.  
  88. <section id="models" class="models">
  89. <h2>Popular Models</h2>
  90. <div class="model">
  91. <h3>Bugatti Chiron</h3>
  92. <img src="images/chiron.jpg" alt="Bugatti Chiron">
  93. <p>The Bugatti Chiron is a mid-engine sports car developed by Bugatti Automobiles S.A.S. It is known for its stunning design and unparalleled performance.</p>
  94. </div>
  95. <div class="model">
  96. <h3>Bugatti Veyron</h3>
  97. <img src="images/veyron.jpg" alt="Bugatti Veyron">
  98. <p>The Bugatti Veyron is a luxury sports car that was once the fastest production car in the world. It is celebrated for its engineering and speed.</p>
  99. </div>
  100. <div class="model">
  101. <h3>Bugatti Divo</h3>
  102. <img src="images/divo.jpg" alt="Bugatti Divo">
  103. <p>The Bugatti Divo is a limited-production mid-engine sports car, emphasizing agility and handling while maintaining the power of the Bugatti brand.</p>
  104. </div>
  105. </section>
  106.  
  107. <section id="history">
  108. <h2>History of Bugatti</h2>
  109. <p>Founded in 1909 by Italian-born French automobile designer Ettore Bugatti, Bugatti has a rich history of producing high-performance vehicles known for their artistic designs and innovative engineering.</p>
  110. </section>
  111. </main>
  112.  
  113. <footer>
  114. <section id="contact">
  115. <h2>Contact Us</h2>
  116. <p>Email: [email protected]</p>
  117. <p>Phone: +1 234 567 8900</p>
  118. </section>
  119. <p>&copy; 2024 Bugatti Cars. All rights reserved.</p>
  120. </footer>
  121. </body>
  122. </html>
  123.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement