19 lines
537 B
HTML
19 lines
537 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title>Bootstrap checkbox</title>
|
|
<link rel="stylesheet" href="bootstrap.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="custom-control custom-checkbox">
|
|
<input type="checkbox" class="custom-control-input" id="customCheck1">
|
|
<label class="custom-control-label" for="customCheck1">Check this custom checkbox</label>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|