22 lines
764 B
HTML
22 lines
764 B
HTML
<!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>Fix the Cascade</title>
|
|
<link rel="stylesheet" href="solution.css">
|
|
</head>
|
|
<body>
|
|
<p class="para">I'm just a simple paragraph!</p>
|
|
<p class="para small-para">I'm a smaller paragraph!</p>
|
|
|
|
<button id="confirm-button" class="button confirm">Confirm</button>
|
|
<button id="cancel-button" class="button cancel">Cancel</button>
|
|
|
|
<div class="text">I'm not related to those divs down there.</div>
|
|
<div class="text">I have a child!
|
|
<div class="text child">My ancestor is so embarrassing.</div>
|
|
</div>
|
|
</body>
|
|
</html> |