0
I want to keep these two elements aligned and of the same size. Note that I have already left the two with the same size
and nothing:
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Nivas tag input html5</title>
<meta charset="utf-8">
<style type="text/css">
</style>
</head>
<body>
<form name="F_aula" method="post" action="">
<!--- Associar label com os elementos- boa pratica -->
<fieldset id="Nome"><legend>Nome de usuario</legend>
<p>Nome:<input type="text" name="tNome" id="cNome" maxlength="" ="10" size="20" ></p>
<p>Idade:<input type="numbe" name="yIdade" maxlength="3" size="20"></p>
<p>E-mail:<input type="text" name="tEmail" id="oEmail" max="40
" size="20"></p>
</fieldset><br><br><br>
<!--- Novos inputs e atributos HTML5 --->
<!---- E-mail--->
<!---- E-mail atributo required--->
<fieldset id="email"><legend> E-mail do usuario</legend>
<p>E-mail:</p>
</fieldset><br><br><br>
<!---- Número--->
<fieldset id="numero"><legend>Número de telefone</legend>
<p>Número</p>
</fieldset>
</form>
</body>
</html>
Hello! Where is the css style of your code? Put it too.
– Fabiano Monteiro