Tag button e semântica
Em HTML é semântico usar a tag <button> sem a tag <form> ?
Nota: não é por que o HTML está válido pelo "w3-valitador" que significa que o código seja realmente semântico.
Meu html ficaria tipo isto:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en-us">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Page</title>
</head>
<body>
<div>
<button class="callWindow">teste</button>
</div>
</body>
</html>Discussão (12)
Carregando comentários...