A Pen by Thulio Philipe on CodePen.
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
Show hidden characters
// Você abre o ST2 e quando gera o html:5 ele retorna a lang diferente do pt-BR (padrão brasileiro); Vá em: | |
// Preferences > Package Settings > Emmet > Settings - User | |
{ | |
"snippets": { | |
"variables":{ | |
"lang": "pt-BR", | |
"locale": "pt-BR" | |
} | |
} |
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
<h1>html5 attr autofocus</h1> | |
<label>Input de texto:</label> | |
<input type="text" placeholder="input type text"> | |
<br /> | |
<label>Input de e-mail:</label> | |
<input type="email" placeholder="input type e-mail" autofocus> | |
A Pen by Thulio Philipe on CodePen.
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
<section id="wrapper"> | |
</section> | |
<article> | |
<p>Procurando no mapa: | |
<location id="status">checando...</span> | |
</p> | |
</article> | |
A Pen by Thulio Philipe on CodePen.
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
{ | |
"color_scheme": "Packages/Color Scheme - Default/Monokai Bright.tmTheme", // esquema de cores padrão do sublime | |
"theme": "Nexus.sublime-theme", // Tema utilizado | |
"caret_style": "phase", // Alterando o estilo do cursor (“smooth”, “phase”, “blink”, “wide”, “solid”) | |
"font_size": 8, // tamanho da fonte | |
"highlight_line": true, // Highlight na linha que o cursor se encontra | |
"line_padding_bottom": 1, // adicionando um padding bottom na linha para melhorar a legibilidade | |
"line_padding_top": 1, // adicionando um padding top na linha para melhorar a legibilidade | |
"fade_fold_buttons": false, // deixar sempre visível a opção de show/hide code folding | |
"bold_folder_labels": true, // deixa as pastas do projeto em negrito na barra lateral, diferenciando as pasta dos arquivos |
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
<form action="#"> | |
<div> | |
<label for="select-teste">Select</label> | |
<select name="select-teste" id="select-teste"> | |
<option selected disabled >Esse vai ser o option padrão</option> | |
<option value="Opcao 1">Opção 1</option> | |
<option value="Opcao 2">Opção 2</option> | |
<option value="Opcao 3">Opção 3</option> | |
</select> |
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
<input type="password" placeholder="Digite sua senha" /> |
OlderNewer