Skip to content

Instantly share code, notes, and snippets.

@natafaye
Created September 23, 2021 01:41
Show Gist options
  • Save natafaye/74e8b127040715561f0db3a21d32df19 to your computer and use it in GitHub Desktop.
Save natafaye/74e8b127040715561f0db3a21d32df19 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Target Practice: Flexbox</title>
<link rel="stylesheet" href="target-practice-flexbox.css">
</head>
<body>
<div class="question-container">
<h3>Which size would you like?</h3>
<div class="question-options-container">
<div>
<p>5 x 5</p>
<button>Buy</button>
</div>
<div>
<p>4 x 9</p>
<button>Buy</button>
</div>
<div>
<p>3 x 2</p>
<button>Buy</button>
</div>
<div>
<p>1 x 9</p>
<button>Buy</button>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment