INSTALL
Your browser does not support the video tag.
Bhavesh Navgire
#good morning niche car website Digi he from flask import Flask, render_template_string app = Flask(__name__) html_code = """ <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>🚗 Car World</title> <style> body{ margin:0; font-family:Arial, sans-serif; background:#111; color:white; } header{ text-align:center; padding:25px; background:linear-gradient(90deg,#000000,#434343); box-shadow:0 0 20px red; } h1{margin:0;color:red;} section{ padding:40px 20px; } .section-title{ text-align:center; margin-bottom:30px; font-size:2em; color:#ff4b2b; } .grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:25px; } .card{ background:#1c1c1c; padding:20px; border-radius:15px; text-align:center; transition:0.4s; box-shadow:0 0 15px rgba(0,0,0,0.5); } .card:hover{ transform:scale(1.05); box-shadow:0 0 25px red; } .btn{ display:inline-block; margin-top:15px; padding:10px 20px; background:red; color:white; border-radius:8px; text-decoration:none; font-weight:bold; transition:0.3s; } .btn:hover{ background:white; color:black; } </style> </head> <body> <header> <h1>🚗 Car World</h1> <p>Drive Your Dream</p> </header> <section> <h2 class="section-title">🔥 Popular Cars</h2> <div class="grid"> <div class="card"> <h3>BMW M5</h3> <p>Luxury Sports Sedan</p> <a href="https://www.bmw.com" target="_blank" class="btn">View</a> </div> <div class="card"> <h3>Lamborghini Huracan</h3> <p>Super Sports Car</p> <a href="https://www.lamborghini.com" target="_blank" class="btn">View</a> </div> <div class="card"> <h3>Tesla Model S</h3> <p>Electric Performance Car</p> <a href="https://www.tesla.com" target="_blank" class="btn">View</a> </div> </div> </section> <section> <h2 class="section-title">🏭 Car Brands</h2> <div class="grid"> <div class="card"> <h3>BMW</h3> <a href="https://www.bmw.com" target="_blank" class="btn">Visit</a> </div> <div class="card"> <h3>Lamborghini</h3> <a href="https://www.lamborghini.com" target="_blank" class="btn">Visit</a> </div> <div class="card"> <h3>Tesla</h3> <a href="https://www.tesla.com" target="_blank" class="btn">Visit</a> </div> </div> </section> </body> </html> """ @app.route("/") def home(): return render_template_string(html_code) if __name__ == "__main__": app.run(debug=True)
908 जणांनी पाहिले
11
13
कमेंट
Your browser does not support JavaScript!