Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE HTML>
- <html lang="pt-br">
- <!-- Cabeçalho -->
- <head>
- <meta charset="utf-8">
- <title> Aula 07 </title>
- <!-- Seção CSS -->
- <link rel="stylesheet" href="../_css/estilo.css"> </style>
- <style>
- html
- {
- font-size: 18px;
- font-style: normal;
- font-weight: normal;
- color: darkblue;
- text-shadow: 2px 2px 4px #000000;
- }
- fieldset
- {
- width: 70% ;
- }
- .button
- {
- margin: 3px;
- display: inline-block;
- border: none;
- border-radius: 4px;
- color: #FFFFFF;
- background-color: darkblue;
- width: 100px;
- padding: 15px;
- text-align: center;
- font-size: 15px;
- cursor: pointer;
- transition: all 0.5s;
- }
- .button span
- {
- cursor: pointer;
- display: inline-block;
- position: relative;
- transition: 0.5s;
- }
- .button:hover span
- {
- padding-right: 25px;
- }
- .button span:after
- {
- top: 0;
- right: -20px;
- position: absolute;
- content: '\00bb';
- opacity: 0;
- transition: 0.5s;
- }
- .button:hover span:after
- {
- right: 0;
- opacity: 1;
- }
- </style>
- </head>
- <!-- Corpo -->
- <body>
- <!-- Bloco -->
- <div>
- <form method="get" action="Voto.php">
- <fieldset>
- <legend> Formulário </legend> <br>
- <label for="ano_nasc"> Ano de Nascimento: </label>
- <input type="number" id="ano_nasc" name="ano" placeholder="4 dígitos"> <br> <br>
- <!-- Botão -->
- <button class="button" type="submit" value="Enviar" style="vertical-align:middle"> <span> Enviar </span> </button>
- <button class="button" type="reset" value="Limpar" style="vertical-align:middle"> <span> Limpar </span> </button>
- </fieldset>
- </form>
- </div>
- </body>
- </html>
- <!----------------------------------------- -->
- <!----------------------------------------- -->
- <!----------------------------------------- -->
- <!----------------------------------------- -->
- <!----------------------------------------- -->
- <!DOCTYPE HTML>
- <html lang="pt-br">
- <!-- Cabeçalho -->
- <head>
- <meta charset="utf-8">
- <title> Aula 07 </title>
- <!-- Seção CSS -->
- <link rel="stylesheet" href="../_css/estilo.css"> </style>
- <style>
- html
- {
- font-size: 18px;
- font-style: normal;
- font-weight: normal;
- color: darkblue;
- text-shadow: 2px 2px 4px #000000;
- }
- button
- {
- cursor: pointer;
- color: blue;
- background-color: #4CAF50; /* Green */
- border: none;
- display: inline-block;
- margin: 40px 190px;
- padding: 16px 32px;
- font-size: 16px;
- text-align: center;
- text-decoration: none;
- transition-duration: 0.4s;
- -webkit-transition-duration: 0.4s; /* Safari */
- }
- .button1
- {
- border: 2px solid #4CAF50;
- color: black;
- background-color: white;
- }
- .button1:hover
- {
- color: white;
- background-color: #4CAF50;
- }
- </style>
- </head>
- <!-- Corpo -->
- <body>
- <div>
- <?php
- # Supressão de erros
- error_reporting(0);
- // Captura de variáveis
- $ano_nasc = isset($_GET['ano']) ? ($_GET['ano']) : (0) ;
- $idade = date('Y') - $ano_nasc;
- // Saída de dados
- echo "Ano de Nascimento: " . $ano_nasc . "<br>";
- echo "Idade: " . $idade . " anos";
- // Estrutura Condicional
- if($idade > 18)
- {
- $resp = "SIM";
- }
- else
- {
- $resp = "NÃO";
- }
- echo "<br> Poderá votar ? >>> $resp";
- echo "<br> Poderá dirigir ? >>> $resp";
- ?>
- <br> <br>
- <button class="button1" value="Voltar" onClick="history.go(-1)"> Voltar </button>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement