index.html 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <title>Module</title>
  7. <link rel="stylesheet" href="css/font-awesome.min.css">
  8. <link rel="stylesheet" href="css/styles.css">
  9. </head>
  10. <body>
  11. <header>
  12. <div class="container clearfix">
  13. <a href="/"><img src="images/logo.png" alt="Prechu"></a>
  14. <form>
  15. <label for="search">
  16. <input type="text" id="search" placeholder="Search">
  17. </label>
  18. <label for="search-btn"><i class="fa"></i></label>
  19. <input type="submit" id="search-btn">
  20. </form>
  21. </div>
  22. </header>
  23. <section class="banner">
  24. <div class="container">
  25. <img src="images/banner.jpg" alt="img">
  26. </div>
  27. </section>
  28. <section class="circles">
  29. <div class="container circle-flex">
  30. <div class="circle-item">
  31. <div class="icon">
  32. <i class="fa"></i>
  33. </div>
  34. <div class="circle-text">
  35. <h3>Contrary to popular</h3>
  36. <p>Lorem Ipsum is not simply random text. It has roots in a piece </p>
  37. </div>
  38. </div>
  39. <div class="circle-item">
  40. <div class="icon">
  41. <i class="fa"></i>
  42. </div>
  43. <div class="circle-text">
  44. <h3>Contrary to popular</h3>
  45. <p>Lorem Ipsum is not simply random text. It has roots in a piece </p>
  46. </div>
  47. </div>
  48. <div class="circle-item">
  49. <div class="icon">
  50. <i class="fa"></i>
  51. </div>
  52. <div class="circle-text">
  53. <h3>Contrary to popular</h3>
  54. <p>Lorem Ipsum is not simply random text. It has roots in a piece </p>
  55. </div>
  56. </div>
  57. </div>
  58. </section>
  59. <section class="shopping-cart">
  60. <div class="container">
  61. <div class="header-h1">
  62. <h1>The Shopping cart</h1>
  63. </div>
  64. <div class="shop-flex">
  65. <div class="shop-img">
  66. <a href="#" class="shop-icon">
  67. <i class="fa"></i>
  68. </a>
  69. </div>
  70. <div class="shop-text">
  71. <div class="h2-header">
  72. <h2>Some Bullet text here</h2>
  73. </div>
  74. <p>Lorem Ipsum is simply dummy text of the printing and typesetting
  75. Lorem Ipsum has been the industry's standard dummy text ever
  76. When an unknown printer took a galley of type and scrambled
  77. It to make a type specimen book. It has survived not only five centuries
  78. But also the leap into electronic typesetting,
  79. Remaining essentially unchanged. It was popularised
  80. The release of Letraset sheets containing Lorem Ipsum passages
  81. </p>
  82. </div>
  83. </div>
  84. </div>
  85. </section>
  86. <footer>
  87. <span>Copyright © 2017 A-Level</span>
  88. </footer>
  89. </body>
  90. </html>