|
| 1 | +<!-- Based on Product Landing Page by Brad Traversy (2019) |
| 2 | +see: https://www.youtube.com/watch?v=61R5kn_kYwY --> |
| 3 | + |
| 4 | +<!DOCTYPE html> |
| 5 | +<html lang="en"> |
| 6 | + <head> |
| 7 | + <meta charset="UTF-8" /> |
| 8 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 9 | + <link rel="stylesheet" href="style.css" /> |
| 10 | + <title>Headphones Product Page</title> |
| 11 | + </head> |
| 12 | + <body> |
| 13 | + <nav class="navbar"> |
| 14 | + <div class="container"> |
| 15 | + <h1 class="logo">Phono</h1> |
| 16 | + <ul class="nav"> |
| 17 | + <li><a href="#home">Home</a></li> |
| 18 | + <li><a href="#about">About</a></li> |
| 19 | + </ul> |
| 20 | + </div> |
| 21 | + </nav> |
| 22 | + |
| 23 | + <!-- Showcase --> |
| 24 | + <section class="section-showcase"> |
| 25 | + <div class="container"> |
| 26 | + <div> |
| 27 | + <h1>The headphones of the future.</h1> |
| 28 | + <p> |
| 29 | + Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo |
| 30 | + repudiandae rerum libero ipsum asperiores omnis mollitia, nostrum |
| 31 | + commodi placeat ea itaque modi corrupti corporis nam voluptas aut |
| 32 | + reprehenderit eaque culpa. |
| 33 | + </p> |
| 34 | + <a href="#" class="btn">Read More</a> |
| 35 | + </div> |
| 36 | + <img src="https://i.ibb.co/37Y74kv/showcase.jpg" alt="" /> |
| 37 | + </div> |
| 38 | + </section> |
| 39 | + |
| 40 | + <!-- Large Text --> |
| 41 | + <section id="about" class="section-large-text"> |
| 42 | + <div class="overlay"> |
| 43 | + <div class="section-large-text-inner"> |
| 44 | + <h3>Loud & Clear</h3> |
| 45 | + <h2>People Aren't Hearing All the Music</h2> |
| 46 | + <p> |
| 47 | + Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta |
| 48 | + repudiandae laboriosam quia, error tempore porro ducimus voluptate |
| 49 | + laborum nostrum iure. |
| 50 | + </p> |
| 51 | + </div> |
| 52 | + </div> |
| 53 | + </section> |
| 54 | + |
| 55 | + <!-- Gallery --> |
| 56 | + <section class="section-gallery"> |
| 57 | + <div class="gallery"> |
| 58 | + <a href="https://i.ibb.co/CHLBZnp/gal2323.jpg" class="big" |
| 59 | + ><img src="https://i.ibb.co/CHLBZnp/gal2323.jpg" alt="" |
| 60 | + /></a> |
| 61 | + <a href="https://i.ibb.co/4pBbhfY/gal39834.jpg" class="big" |
| 62 | + ><img src="https://i.ibb.co/4pBbhfY/gal39834.jpg" alt="" |
| 63 | + /></a> |
| 64 | + <a href="https://i.ibb.co/xSnHP7g/gal43884.jpg" class="big" |
| 65 | + ><img src="https://i.ibb.co/xSnHP7g/gal43884.jpg" alt="" |
| 66 | + /></a> |
| 67 | + <a href="https://i.ibb.co/QN6Bnrb/gal4958.jpg" class="big" |
| 68 | + ><img src="https://i.ibb.co/QN6Bnrb/gal4958.jpg" alt="" |
| 69 | + /></a> |
| 70 | + <a href="https://i.ibb.co/dGZvj75/gal4545.jpg" class="big"> |
| 71 | + <img src="https://i.ibb.co/dGZvj75/gal4545.jpg" alt="" |
| 72 | + /></a> |
| 73 | + <a href="https://i.ibb.co/S6FVFNt/gal74744.jpg" class="big" |
| 74 | + ><img src="https://i.ibb.co/S6FVFNt/gal74744.jpg" alt="" |
| 75 | + /></a> |
| 76 | + </div> |
| 77 | + </section> |
| 78 | + |
| 79 | + <!-- Footer --> |
| 80 | + <footer class="section-footer"> |
| 81 | + <div class="container"> |
| 82 | + <div> |
| 83 | + <h2>Lorem ipsum dolor sit.</h2> |
| 84 | + <a href="http://twitter.com"> |
| 85 | + <i class="fab fa-twitter fa-2x"></i> |
| 86 | + </a> |
| 87 | + <a href="http://facebook.com"> |
| 88 | + <i class="fab fa-facebook fa-2x"></i> |
| 89 | + </a> |
| 90 | + <a href="http://youtube.com"> |
| 91 | + <i class="fab fa-youtube fa-2x"></i> |
| 92 | + </a> |
| 93 | + </div> |
| 94 | + <div> |
| 95 | + <h3>Company Info</h3> |
| 96 | + <ul> |
| 97 | + <li><a href="#">All Products</a></li> |
| 98 | + <li><a href="#">About Us</a></li> |
| 99 | + <li><a href="#">Privacy Policy</a></li> |
| 100 | + <li><a href="#">Terms of Service</a></li> |
| 101 | + </ul> |
| 102 | + </div> |
| 103 | + <div> |
| 104 | + <h3>Blog Posts</h3> |
| 105 | + <ul> |
| 106 | + <li><a href="#">Lorem ipsum dolor.</a></li> |
| 107 | + <li><a href="#">Lorem ipsum dolor.</a></li> |
| 108 | + <li><a href="#">Lorem ipsum dolor.</a></li> |
| 109 | + <li><a href="#">Lorem ipsum dolor.</a></li> |
| 110 | + </ul> |
| 111 | + </div> |
| 112 | + <div> |
| 113 | + <h3>Subscribe</h3> |
| 114 | + <p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p> |
| 115 | + <form name="email-form" method="POST" data-netlify="true"> |
| 116 | + <div class="email-form"> |
| 117 | + <span class="form-control-wrap" |
| 118 | + ><input |
| 119 | + type="email" |
| 120 | + name="email" |
| 121 | + id="email" |
| 122 | + size="40" |
| 123 | + class="form-control" |
| 124 | + placeholder="E-mail" /></span |
| 125 | + ><button type="submit" value="Submit" class="form-control submit"> |
| 126 | + <i class="fas fa-chevron-right"></i> |
| 127 | + </button> |
| 128 | + </div> |
| 129 | + </form> |
| 130 | + </div> |
| 131 | + </div> |
| 132 | + </footer> |
| 133 | + |
| 134 | + <script src="script.js"></script> |
| 135 | + </body> |
| 136 | +</html> |
0 commit comments