Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Sistemas Web 2023-03-10 (4)</title>
- </head>
- <body>
- <section name="definicoes">
- <header>Algumas definições</header>
- <dl><!-- definition list / dictionary / key-value pairs -->
- <dt>Browser Wars</dt><!-- definition term / key -->
- <dd>Um período da história de grande
- conflitualidade entre fabricantes
- de Web browsers.</dd><!-- definition data / value -->
- <dt>XHTML</dt>
- <dd>HTML cuja gramática foi escrita em XML.</dd>
- </dl>
- </section>
- <hr>
- <section name="exercicioTolo">
- <p>Escreva um novo documento HTML que,
- quando carregado num browser, faça
- aparecer a frase
- HTML começa com <html>
- </p>
- </section>
- <hr>
- <section name="tabelaASCII">
- <script type="application/javascript">
- var strHTML = "";
- for(var codigo=0; codigo<=255; codigo+=1){
- strCodigo="&#"+codigo+";";
- strLinha=codigo+" : "+strCodigo+"<br>";
- strHTML+=strLinha;
- }//for
- document.write(strHTML);
- </script>
- </section>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment