Ferrari Fan Site Development

Заказчик: AI | Опубликовано: 26.10.2025

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Ferrari Fan Site</title> <style> body { font-family: Arial, sans-serif; background-color: #f0f0f0; color: #333; } header { background-color: #d40000; color: white; padding: 20px; text-align: center; } .container { max-width: 800px; margin: 0 auto; padding: 20px; } img { max-width: 100%; height: auto; } footer { text-align: center; padding: 10px; background-color: #333; color: white; } </style> </head> <body> <header> <h1>Welcome to Ferrari World</h1> <p>The ultimate destination for Ferrari enthusiasts.</p> </header> <div class="container"> <h2>About Ferrari</h2> <p>Ferrari is an Italian luxury sports car manufacturer founded by Enzo Ferrari in 1939. Known for its iconic red cars and racing heritage.</p> <img src="https://example.com/ferrari-car.jpg" alt="Ferrari Car" /> <!-- Replace with a real image URL --> <h2>Latest News</h2> <p>Check out the new SF90 Stradale – a hybrid supercar!</p> <a href="https://www.ferrari.com" target="_blank">Official Ferrari Site</a> </div> <footer> <p>&copy; 2023 Ferrari Fan Site. Not affiliated with Ferrari S.p.A.</p> </footer> </body> </html>