HTML/CSS - 9

HTML/CSS - 9: Simple Layouts

Learn how to structure your page using <div> containers and basic layout techniques.

✦ HTML Editor
▶ Live Output

👀 Show Solution
.card {
  background: #111;
  border: 2px solid #00ff9d;
  border-radius: 12px;
  padding: 25px;
  margin: 20px auto;
  max-width: 700px;
}