<html>
<body>
<h2>Флажки</h2>
<p>Значение <strong>input type="checkbox"</strong> определяет флажки (чекбоксы):</p>
<form action="https://www.w3schools.com/action_page.php">
<input type="checkbox" name="vehicle1" value="Bike">у меня есть велосипед
<br>
<input type="checkbox" name="vehicle2" value="Car">у меня есть автомобиль
<br><br>
<input type="submit">
</form>
</body>
</html>