odin-default-css-exercises/foundations/06-cascade-fix/index.html

23 lines
827 B
HTML
Raw Normal View History

<!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="style.css">
</head>
<body>
2022-07-29 12:17:26 +00:00
<p class="para">I'm just a paragraph with extra bold text!</p>
<p class="para small-para">I'm a smaller paragraph, also with extra bold text!</p>
<button id="confirm-button" class="button confirm">Confirm</button>
<button id="cancel-button" class="button cancel">Cancel</button>
2022-07-26 11:50:43 +00:00
<div class="text">I'm a div with thin text!</div>
<div class="text">I'm a div with thin text and a child div!
2022-07-29 12:17:26 +00:00
<div class="text child">I'm a smaller child div with extra bold text.</div>
</div>
</body>
2022-07-29 12:17:26 +00:00
</html>