Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Bugatti Cars</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- margin: 0;
- padding: 0;
- background-color: #f4f4f4;
- }
- header {
- background: #000;
- color: #fff;
- padding: 10px 0;
- text-align: center;
- }
- nav ul {
- list-style: none;
- padding: 0;
- }
- nav ul li {
- display: inline;
- margin: 0 15px;
- }
- nav a {
- color: #fff;
- text-decoration: none;
- }
- .banner {
- background: #eaeaea;
- padding: 20px;
- text-align: center;
- }
- .models {
- padding: 20px;
- }
- .model {
- margin: 20px 0;
- text-align: center;
- }
- .model img {
- max-width: 100%;
- height: auto;
- border: 1px solid #ccc;
- }
- footer {
- background: #000;
- color: #fff;
- text-align: center;
- padding: 10px 0;
- position: relative;
- bottom: 0;
- width: 100%;
- }
- </style>
- </head>
- <body>
- <header>
- <h1>Bugatti Cars</h1>
- <nav>
- <ul>
- <li><a href="#models">Models</a></li>
- <li><a href="#history">History</a></li>
- <li><a href="#contact">Contact</a></li>
- </ul>
- </nav>
- </header>
- <main>
- <section class="banner">
- <h2>Welcome to the World of Bugatti</h2>
- <p>Discover the luxury, speed, and elegance of Bugatti cars.</p>
- </section>
- <section id="models" class="models">
- <h2>Popular Models</h2>
- <div class="model">
- <h3>Bugatti Chiron</h3>
- <img src="images/chiron.jpg" alt="Bugatti Chiron">
- <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>
- </div>
- <div class="model">
- <h3>Bugatti Veyron</h3>
- <img src="images/veyron.jpg" alt="Bugatti Veyron">
- <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>
- </div>
- <div class="model">
- <h3>Bugatti Divo</h3>
- <img src="images/divo.jpg" alt="Bugatti Divo">
- <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>
- </div>
- </section>
- <section id="history">
- <h2>History of Bugatti</h2>
- <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>
- </section>
- </main>
- <footer>
- <section id="contact">
- <h2>Contact Us</h2>
- <p>Email: [email protected]</p>
- <p>Phone: +1 234 567 8900</p>
- </section>
- <p>© 2024 Bugatti Cars. All rights reserved.</p>
- </footer>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement