- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Timetable cards</title>
  <link rel="stylesheet" href="mastery-4-setting-v2.css">
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <div class="event event-approved">
    <div class="time">09:15</div>
    <div class="text">Sometimes we forgot about the most important things in...</div>
    <div class="image-placeholder"></div>
  </div>
  <div class="event event-declined">
    <div class="time">12:30</div>
    <div class="text">Quick reminder to having proper lunch and you can back to...</div>
    <div class="image-placeholder"></div>
  </div>
</body>
</html>
CSS
.event-approved {
}
.event-declined {
}
.time {
}
.event-declined .time {
}
- Goal
- Result
- Overlay
- Differences
- ?
Press Compare to send your code for review.