Skip to content

Commit

Permalink
refactor image containers
Browse files Browse the repository at this point in the history
  • Loading branch information
Dripcoding committed Oct 24, 2020
1 parent 924681c commit d01df04
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,27 @@
<body>
<!-- card -->
<section class="cardContainer">
<!-- bg image container -->
<div class="imageContainer"></div>
<!-- illustration box-desktop -->
<div class="cardContainer__imageContainerOne">
<img
src="./assets/images/illustration-box-desktop.svg"
alt="illustration desktop box"
/>
</div>
<div class="cardContainer__imageContainerTwo">
<!-- woman-online -->
<picture>
<source
srcset="./assets/images/illustration-woman-online-desktop.svg"
media="(min-width: 1100px)"
/>
<img
class="imageContainer__womanOnline"
src="./assets/images/illustration-woman-online-mobile.svg"
alt="woman online"
/>
</picture>
</div>
<!-- faq section -->
<div class="faqContainer">
<h1>FAQ</h1>
Expand Down

0 comments on commit d01df04

Please sign in to comment.