mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-03 16:43:03 +00:00
21 lines
624 B
HTML
21 lines
624 B
HTML
<!DOCTYPE html>
|
||
<html lang="ru">
|
||
<head>
|
||
<title>HTML-форма с флажком</title>
|
||
<meta charset='utf-8' />
|
||
</head>
|
||
<body>
|
||
<form method='post' action='form_hidden_handler.php'>
|
||
<input type='checkbox' name='php' checked />
|
||
Вы знакомы с PHP?<br />
|
||
<input type='checkbox' name='phyton' checked />
|
||
Вы знакомы с Python?<br />
|
||
<input type='checkbox' name='ruby' />
|
||
Вы знакомы с Ruby?<br />
|
||
<input type='checkbox' name='javascript' />
|
||
Вы знакомы с JavaScript?<br />
|
||
<input type='submit' value='Отправить' />
|
||
</form>
|
||
</body>
|
||
</html>
|