This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- ESTRUTURAS BÁSICAS DE UMA PÁGINA WEB --> | |
| <!-- Códigos de status do HTTP: http://pt.wikipedia.org/wiki/Lista_de_c%C3%B3digos_de_status_HTTP --> | |
| <meta http-equiv="content-type" content="text/html;charset=UTF-8" /> <!-- Definir UTF-8 --> | |
| <!-- Data atributos para passar valores ao elemento DOM --> | |
| <input type="hidden" name="aluno" data-nome="joao" data-sobren="silva" data-idade="55"> | |
| <!DOCTYPE html> <!-- Em html5 basta apenas por esta tag de inicio antes de <html> --> |