Текстовые поля: элементы input

Создание полей для ввода текста с помощью input.

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>Text and password inputs</title>
	<style>
		body {
			font: 100% arial, helvetica, sans-serif;
		}

		fieldset {
			padding: 0 1em 1em 1em;
		}

		legend {
			padding: 1em;
		}
	</style>
</head>
<body>
	<form action="someplace.php">
		<fieldset>
			<legend>Text and Password</legend>
			<label for="username">Username:</label>
			<input name="username" id="username" value="Some Text">
			<label for="password">Password:</label>
			<input type="password" name="password" id="password" value="Password">
		</fieldset>
	</form>
</body>
</html>

Страницы в тему:

Добавить комментарий