odin-css-exercises/margin-and-padding/margin-and-padding-1/index.html
MfnBacon f45be5f4b8
Fix to index.html
Added missing closing bracket on final div. (Sorry if this is the wrong way to do this, I'm new and here on assignment from The Odin Project.)
2021-09-08 16:13:05 -05:00

21 lines
440 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>Margin and Padding exercise</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="one">
DIV ONE
</div>
<div class="two">
DIV TWO
</div>
<div class="three">
DIV THREE
</div>
</body>
</html>