- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Challenge: Filter Combinations</title>
    <link href="course.css" rel="stylesheet">
    <link href="style.css" rel="stylesheet">
  </head>
  <body class="exam">
    <div class="finale wide">
      <div class="combo-1"></div>
      <div class="combo-2"></div>
      <div class="combo-3"></div>
    </div>
  </body>
</html>
CSS
.combo-1 {
  background-image: url("img/spb-6.jpg");
}
.combo-2 {
  background-image: url("img/spb-1.jpg");
}
.combo-3 {
  background-image: url("img/spb-3.jpg");
}
- Goal
- Result
- Overlay
- Differences
- ?
Press Compare to send your code for review.