-5
I have an HTML college job and can not do as the image below: alignment and date of birth and CEP masks...
follows my code:
<!DOCTYPE html>
<html>
<head>
<title>Atividade06</title>
</head>
<body>
<div id="area">
<form id="formulario" autocomplete="off">
<fieldset>
<legend>Dados Pessoais</legend>
<label>Nome:</label><input class="campo_nome" type="text">
<label>Sobrenome:</label><input class="campo_email" type="password"><br><br>
<label>Nascimento:</label><input type="date">
</fieldset>
</form>
</div>
</body>
</html>
</body>
</html>
Edit the question by adding the CSS.
– Augusto Vasques
In the picture does not seem to me mask, the person who made the form of the image, instead of using a
input[type='date']
, like you did, she used 3input[type='text']
( 1 w/day, 1 w/month and 1 w/year )– Icaro Martins