Is there any reference that shows the default attributes values of some tags? For example if I write:
<form>
...
</form>
It rendered to something like this: (I think)
<form action="" method="get" enctype="application/x-www-form-urlencoded">
...
</form>
Or <input></input>
is rendered to <input type="text"></input>
Where I can find this information for all tags?