good morning to all, what I want to do I think it's something simple but I do not give with the answer, I'm trying to make a form and I need to locate the checkboxes on the right and the options on the left.
This is a bootstrap example. How should I code it so that it stays the same as the image?
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/lib/bootstrap.min.css">
<script src="/lib/jquery-1.12.2.min.js"></script>
<script src="/lib/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Form control: checkbox</h2>
<p>The form below contains three checkboxes. The last option is disabled:
</p>
<form role="form">
<div class="checkbox">
<label><input type="checkbox" value="">Option 1</label>
</div>
<div class="checkbox">
<label><input type="checkbox" value="">Option 2</label>
</div>
<div class="checkbox">
<label><input type="checkbox" value="">Option 3</label>
</div>
</form>
</div>
</body>
</html>
Beforehand, I appreciate all the help you can give me. Greetings.