<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>