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
| <!DOCTYPE HTML> | |
| <html lang="pt-br"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <link rel="stylesheet" type="text/css" href="estilo.css"> | |
| <title></title> | |
| </head> | |
| <body> | |
| </body> |
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
| <!DOCTYPE HTML> | |
| <html lang="pt-br"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <link rel="stylesheet" type="text/css" href="estilo.css"> | |
| <title></title> | |
| <!-- comentado para não redirecionar para o google --> | |
| <!--<meta http-equiv="refresh" content="10;url=http://google.com">--> | |
| </head> | |
| <body bgcolor="#FFFFFF" text="#000000"> |
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
| <!DOCTYPE HTML> | |
| <html lang="pt-br"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <link rel="stylesheet" type="text/css" href="estilo.css"> | |
| <title></title> | |
| <!-- comentado para não redirecionar para o google --> | |
| <!--<meta http-equiv="refresh" content="10;url=http://google.com">--> | |
| </head> | |
| <body bgcolor="#FFFFFF" text="#000000"> |
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
| # Copyright (c) 1993-2009 Microsoft Corp. | |
| # | |
| # This is a sample HOSTS file used by Microsoft TCP/IP for Windows. | |
| # | |
| # This file contains the mappings of IP addresses to host names. Each | |
| # entry should be kept on an individual line. The IP address should | |
| # be placed in the first column followed by the corresponding host name. | |
| # The IP address and the host name should be separated by at least one | |
| # space. | |
| # |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Formulário</title> | |
| </head> | |
| <body> | |
| <form> | |
| <label for="text">Text</label> | |
| <input type="text" name="text" id="text" placeholder="text" required="required"> * Obrigatório |
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
| h3{ | |
| color: orange; | |
| } |
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
| /* Conteúdo extraído de Tutorial CSS - Efeitos CSS em links - Maujor - http://www.maujor.com/tutorial/csslinks.php */ | |
| /* 1-) Removendo o sublinhado do link */ | |
| a:link, a:visited { | |
| text-decoration: none | |
| } | |
| a:hover { | |
| text-decoration: underline; | |
| color: #f00 | |
| } | |
| a:active { |
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
| body { | |
| font-size: 14px; | |
| } | |
| /* em: relativo ao tamanho da fonte ('font-size') herdada; */ | |
| .em div{ | |
| font-size: 1.2em; | |
| } | |
| /* rem: relativo ao root (body); */ |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| =begin | |
| ##### CONF | |
| os: ubuntu/xenial64 | |
| ip: 192.168.1.58 | |
| software: |
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
| CREATE DATABASE [database]; | |
| -- Privilégios Locais | |
| CREATE USER '[database]'@'localhost' IDENTIFIED BY '[senha]'; | |
| GRANT ALL PRIVILEGES ON [database].* TO '[database]'@'localhost'; | |
| FLUSH PRIVILEGES; | |
| -- Privilégios Externos | |
| CREATE USER '[database]'@'%' IDENTIFIED BY '[senha]'; | |
| GRANT ALL PRIVILEGES ON [database].* TO '[database]'@'%'; |
OlderNewer