Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>QUIZ</title>
- <style>
- // URI: http://russotragik.tk/
- body{
- font-family: sans-serif;
- font-size: 14px;
- color: #606060;
- }
- #quiz{
- border-radius: 16px;
- border: solid #AFAFAF 2px;
- background-color: #DFDFDF;
- margin: auto;
- width: 40%;
- height: 90px;
- text-align: center;
- line-height: 24px;
- }
- #pergunta{
- border-radius: 16px 16px 0px 0px;
- font-size: 16px;
- background: rgb(245,245,245);
- }
- button{
- width:49%;
- font-size: 18px;
- color: #505050;
- height: 36px;
- }
- </style>
- <meta charset="utf-8">
- <script type="text/javascript" src="quiz.js">
- </script>
- </head>
- <body>
- <div id="quiz">
- <div id="pergunta">
- Para iniciar o Quiz clique em Avançar!
- </div>
- <div id="botoes">
- <p id="iniciar"><button onClick="iniciar()">Avançar</button></p>
- <p id="resposta" style="display:none;">
- <button onClick="Resposta('verdadeiro')">Verdadeiro</button>
- <button onClick="Resposta('falso')">Falso</button>
- </p>
- <p id="recomecar" style="display:none"><button onClick="reiniciar()">Tentar Novamente</button></p>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement