<html lang="en">
<head>
<title>HTML Input Type Checkbox Element with Label</title>
<style>
body{
padding:15px;
}
</style>
</head>
<body>
<form>
<input type="checkbox" name="bootstrap" value="bootstrap">
<label>Bootstrap</label><br><br>
<button type="button">Submit</button>
</form>
</body>
</html>