0
Why the 2 input elements placed at the end of the code are doing nothing?
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<form action="https://Example.com" method="get">
<div>
<label for="nome">Nome:</label>
<input type="text" id="nome" size="10" required="nome"/>
</div>
<div>
<label for="senha">Senha:</label>
<input type="password" id="senha" size="5" maxlength="6" required="senha"/>
</div>
<div>
<button type="submit">Cadastrar</button>
</div>
</form>
<fieldset align="center">
<h3>Se você gostou, não deixe de avaliar</h3>
<label><input type="radio" name="avaliar" value="b"/>Bom</label>
<label><input type="radio" name="avaliar" value="m"/>Médio</label>
<label><input type="radio" name="avaliar" value="r"/>Ruim</label>
<label for="comments"></label>
<br/>
<textarea rows="6" cols="40"></textarea>
<br/>
<label><input type="submit" name="Enviar"></label>
<label><input type="reset" value="Apagar"></label>
<br/>
</fieldset>
</body>
</html>
Type reset should not delete the texts and Submit should redirect to Example.com?