Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>Форма</title>
- <style type="text/css">
- h1 {
- text-align: center;
- font-style: italic;
- }
- #forma {
- text-align: center;
- }
- </style>
- </head>
- <body>
- <h1>Краткое анкетирование по любимой еде</h1>
- <div id="forma">
- <form action="action_page.php" target="_blank">
- <label for="fname">Имя</label><br>
- <input type="text" name="fname"><br>
- <label for="lname">Фамилия</label><br>
- <input type="text" name="lname"><br>
- <label for="howold">Возраст</label><br>
- <input type="text" name="fname">
- <p>Любимая еда</p>
- <input type="radio" id="favoritefood" name="Fastfood" value="FF">
- <label for="favoritefood">Фастфуд</label><br>
- <input type="radio" id="favoritefood" name="homefood" value="HF">
- <label for="favoritefood">Домашняя еда</label><br>
- <input type="radio" id="favoritefood" name="restrauntfood" value="RF">
- <label for="favoritefood">Ресторанная еда</label><br>
- <p>Любимые напитки</p>
- <input type="radio" id="favoritedrink" name="Kompot" value="Kompot">
- <label for="favoritedrink">Самодельные(Компоты, морсы, соки)</label><br>
- <input type="radio" id="favoritedrink" name="Gazirovki" value="Gazirovka">
- <label for="favoritedrink">Газировки</label><br>
- <input type="radio" id="favoritedrink" name="Soki" value="Sok">
- <label for="favoritedrink">Соки в коробках</label><br>
- <input type="radio" id="favoritedrink" name="Water" value="Water">
- <label for="favoritedrink">Вода</label><br>
- <input type="submit" value="Отправить">
- </form>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement