Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Product Landing Page</title> <style> body { font-family: Arial, sans-serif; } .header, .footer { background-color: #f8f9fa; padding: 20px; text-align: center; } .hero { text-align: center; padding: 50px 0; } .features, .testimonials, .pricing, .cta { padding: 20px; } </style> </head> <body> <div class="header"> <h1>Product Name</h1> </div> <div class="hero"> <h2>Compelling Headline</h2> <p>Brief description of the product.</p> <img src="product-image.jpg" alt="Product Image"> </div> <div class="features"> <h3>Features</h3> <ul> <li>Feature 1</li> <li>Feature 2</li> <li>Feature 3</li> </ul> </div> <div class="testimonials"> <h3>Testimonials</h3> <p>"Great product!" - Customer</p> </div> <div class="pricing"> <h3>Pricing</h3> <p>$99</p> <form action="YOUR_PAYMENT_GATEWAY_URL" method="POST"> <button type="submit">Buy Now</button> </form> </div> <div class="cta"> <h3>Call to Action</h3> <button>Buy Now</button> </div> <div class="footer"> <p>Contact info and social media links</p> </div> </body> </html>
Leave a Comment