Advertisement
GalinaKG

Untitled

Feb 6th, 2023
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.12 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <link rel="stylesheet" href="style.css">
  8. <title>Auto</title>
  9. </head>
  10. <body>
  11. <section class="auto">
  12. <article class="auto_content">
  13. <article class="auto-content-text">
  14. <h3 class="auto-content-text-title">We offer high quality vehicles at unbelievable prices & creates pleasant buying experience.</h3>
  15. <p>AutoImage is nisi aliquip consequat duis velit esse cillum dolore fugiat nulla pariatur excepteur sint occaecat. Lorem ipsum dolor sit amt consectetur adipisicing elit sed eiusmod tempor incididuntu labore et dolore magna aliqua enimad minim veniam quis nostrud exercitation ullamco laboris nisi aliquip. Duis aute irure dolor in reprehenderitn voluptate velit ese cillum dolore fugiat nulla pariatur excepteur sint occaecat cupidatat non proident.</p>
  16. <p>Duis aute irure dolor in reprehenderitn voluptate velit ese cillum dolore fugiat nulla pariatur excepteur sint occaecat cupidatat non proident.</p>
  17. </article>
  18. <article class="auto-content-benefits">
  19. <article class="auto-content-benefit1">
  20. <!-- <article class="auto-content-benefit-img"> -->
  21. <img src="images/icon-1.png" alt="">
  22. <!-- </article> -->
  23. <article class="auto-content-benefit-text">
  24. <h5>Affordable Auto Prices</h5>
  25. <p>AutoDrive is nisi aliquip consequat duis velit esse</p>
  26. </article>
  27. </article>
  28. <article class="auto-content-benefit2">
  29. <!-- <article class="auto-content-benefit-img"> -->
  30. <img src="images/icon-2.png" alt="">
  31. <!-- </article> -->
  32. <article class="auto-content-benefit-text">
  33. <h5>20 Years in Business</h5>
  34. <p>Vehicles is nisi aliquip consequat duis velit</p>
  35. </article>
  36. </article>
  37. <article class="auto-content-benefit3">
  38. <!-- <article class="auto-content-benefit-img"> -->
  39. <img src="images/icon-3.png" alt="">
  40. <!-- </article> -->
  41. <article class="auto-content-benefit-text">
  42. <h5>Trusted & Genuine Parts</h5>
  43. <p>Autos Drive is nisi aliquip consequat duis ted</p>
  44. </article>
  45. </article>
  46. </article>
  47. </article>
  48. <article class="auto-content-image">
  49. <img src="images/g01.jpg" alt="">
  50. </article>
  51. </section>
  52. </body>
  53. </html>
  54.  
  55.  
  56.  
  57.  
  58.  
  59. ---------------------------------------------------------------------------------------------------------------------------------------
  60.  
  61.  
  62. @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
  63. @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
  64.  
  65. html {
  66. font-family: Poppins, sans-serif;
  67. font-size: 13px;
  68. font-weight: 300;
  69. line-height: 1.3;
  70. }
  71.  
  72.  
  73. .auto {
  74. width: 80%;
  75. display: flex;
  76. justify-content: space-between;
  77. margin: 50px auto;
  78. margin: 100px;
  79. }
  80.  
  81. .auto-content-image img {
  82. width: 100%;
  83. }
  84.  
  85. .auto_content,
  86. .auto-content-image {
  87. flex-basis: 49%;
  88. }
  89.  
  90. h3,
  91. h5 {
  92. font-family: Montserrat, sans-serif;
  93. }
  94.  
  95. h5 {
  96. margin-bottom: 0px;
  97. }
  98.  
  99. h3{
  100. font-size: 16px;
  101. margin-top: 0px;
  102. }
  103.  
  104. .auto-content-benefit-text p {
  105. margin: 0;
  106. }
  107.  
  108. .auto-content-benefit-text h5 {
  109. margin: 0 0 5px 0;
  110. color: darkslategrey;
  111. }
  112.  
  113. .auto-content-benefits img {
  114. width: 15%;
  115. }
  116.  
  117. .auto-content-benefit1,
  118. .auto-content-benefit2,
  119. .auto-content-benefit3 {
  120. display: flex;
  121. }
  122.  
  123. .auto-content-benefit-text {
  124. margin-top: 30px;
  125. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement