Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Заголовок документа</title> <style> div { margin-bottom: 10px; } label { display: inline-block; width: 120px; } </style> </head> <body> <form> <fieldset style="background:#e1eff2;"> <legend style="padding:20px 0; font-size:20px;">Персональные данные:</legend> <div><label>Имя:</label><input type="text"></div> <div><label>Электронная почта:</label><input type="text"></div> <div><label>Дата рождения:</label><input type="text"></div> <div><label>Место рождения:</label><input type="text"></div> </fieldset> </form> </body> </html>