Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <title>Página Principal</title>
- <link href="css.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div class="header">
- <h1>TIS - JAVASCRIPT</h1>
- </div>
- <div class="wrapper">
- <div class="nav">
- <a href="index.html" class="buttons">HOME </a>
- <a href="codigo.html" class="buttons">CODIGO </a>
- <a href="dowhile.html" class="buttons">DOWHILE </a>
- <a href="for.html" class="buttons">FOR </a>
- <a href="ifelse.html" class="buttons">IFELSE </a>
- <a href="while.html" class="buttons">WHILE </a>
- <a href="if.html" class="buttons">IF </a>
- </div>
- <td class="tgrande">
- <script type="text/javascript">
- var nome;
- var currentTime = new Date();
- var hora=currentTime.getHours();
- nome = prompt ("Qual é o seu nome?");
- if (hora<12)
- document.write("<h2>Bom Dia,</h2><h2> Seja bem vindo(a) senhor(a) <b>"+nome+"</b>!</h2>");
- else
- {
- if (hora<20)
- document.write("<h2>Boa Tarde,</h2><h2> Seja bem vindo(a) senhor(a) <b>"+nome+"</b>!</h2>");
- else
- document.write("<h2>Boa Noite,</h2><h2> Seja bem vindo(a) senhor(a) <b>"+nome+"</b>!</h2>");
- }
- </script>
- <p align="center">O que é <b>JavaScript?</b></p>
- <p align="center"><br>É uma linguagem utilizada principalmente para auxílio de desenvolvimento
- de páginas para a Internet. </font></p>
- <p align="center"><br>O que posso fazer com o <b>JavaScript?</b></p>
- <p align="center"><br>Pode tornar as páginas mais "inteligentes", com recursos adicionais
- como: botões que mudam ao passar o rato em cima, exibir o horário
- actual, verificar se o preenchimento de um formulário está correcto, e
- muito mais! O javaScript pode lhe salvar nas horas em que você menos
- espera, pois as possibilidades de utilização são infinitas.</font></td>
- </tr>
- <tr>
- <td class="tpequeno">
- <p align="center"><b>CURSO TÉCNICO DE INFORMÁTICA SISTEMAS </b></td>
- </tr>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment