<!DOCTYPE html>
<html>
<head>
<title>Заголовок документа</title>
<style>
input { font-size: 16 px; }
input:focus{font-size:16px;}
@media screen and (-webkit-min-device-pixel-ratio:0) {
select,
textarea,
input {
font-size: 16px;
}
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
select:focus,
textarea:focus,
input:focus {
font-size: 16px;
}
}
</style>
</head>
<body>
<form action="getform.php" method="get">
Your Name: <input type="text" name="first_name" />
Your Surname: <input type="text" name="last_name" />
Enter Your E-Mail: <input type="email" name="user_email" />
<input type="submit" value="Submit" />
</form>
</body>
</html>