Keep up the good work, you're on the right track, just a minor adjustment needed.
The code snippet has been updated, so go ahead and run it.
Make sure to update your h1
tag with this:
<h1 class="text-light text-center pt-3 mb-5">MY TODO LIST</h1>
index.html
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="js/application.js"></script>
<link rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
</head>
<body>
<div class ="container bg-dark h-100">
<div class ="row flex-row justify-content-center">
<div class ="col-12">
<h1 class="text-light text-center pt-3 mb-5">MY TODO LIST</h1>
</div>
<div class ="col-4 bg-light flex-column">
<div class ="row border border-bottom-3">
<div class="ml-2 form-check align-self-center">
<input class="form-check-input position-static m-auto" type="checkbox" id="blankCheckbox" value="option1" aria-label="...">
</div>
<div class="col-10">
<p class="mt-3">Test todo</p>
</div>
</div>
<div class="row border border-bottom-3">
<div class="ml-2 form-check align-self-center">
<input class="form-check-input position-static m-auto" type="checkbox" id="blankCheckbox" value="option1" aria-label="...">
</div>
<div class="col-10">
<p class="mt-3">Test todo</p>
</div>
</div>
<div class="row border border-bottom-3">
<div class="ml-2 form-check align-self-center">
<input class="form-check-input position-static m-auto" type="checkbox" id="blankCheckbox" value="option1" aria-label="...">
</div>
<div class="col-10">
<p class="mt-3">Test todo</p>
</div>
</div>
<div class="row border border-bottom-3">
<div class="ml-2 form-check align-self-center">
<input class="form-check-input position-static m-auto" type="checkbox" id="blankCheckbox" value="option1" aria-label="...">
</div>
<div class="col-10">
<p class="mt-3">Test todo</p>
</div>
</div>
<div class="row border border-bottom-3">
<div class="ml-2 form-check align-self-center">
<input class="form-check-input position-static m-auto" type="checkbox" id="blankCheckbox" value="option1" aria-label="...">
</div>
<div class="col-10">
<p class="mt-3">Test todo</p>
</div>
</div>
<div class="row border border-bottom-3">
<div class="ml-2 form-check align-self-center">
<input class="form-check-input position-static m-auto" type="checkbox" id="blankCheckbox" value="option1" aria-label="...">
</div>
<div class="col-10">
<p class="mt-3">Test todo</p>
</div>
</div>
<div class ="row">
<div class ="col-12 d-flex flex-row justify-content-end">
<button type="button" class="btn btn-light">All</button>
<button type="button" class="btn btn-light">Active</button>
<button type="button" class="btn btn-light">Completed</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>