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" /> | |
<title>Modernizr</title> | |
</head> | |
<body> | |
<section> | |
<h1>My Header</h1> | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod |
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" href="css/reset.css" /> | |
<link rel="stylesheet" href="css/text.css" /> | |
<link rel="stylesheet" href="css/960.css" /> | |
<link rel="stylesheet" href="css/custom.css" /> | |
<script src="js/source.js"></script> | |
<title>Javascript: Condições e Loops</title> |
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
#header, | |
#footer { | |
background:#000; | |
color:#FFF; | |
height:auto; | |
} |
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
PALAVRAS RESERVADAS | |
-------------------- | |
abstract boolean break byte case catch char class const continue debugger default | |
delete do double else enum export extends false final finally float for function goto | |
if implements import in instanceof int interface long native new null package private | |
protected public return short static super switch synchronized this throw throws | |
transient true try typeof var volatile void while with |
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
/* | |
* AUMENTAR/DIMINUIR font | |
* ---------------------- | |
* by Marcker || @marcker || [email protected] | |
* MIT License; | |
* ---------------------- | |
* | |
* Uso: | |
* | |
* HTML |
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" /> | |
<script src="js/access-font.js"> | |
</script> | |
<title> | |
Aumentar / Diminuir | |
</title> |
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
/* Binary to Decimal Converter | |
by Marcker - [email protected] | |
MIT License - < http://opensource.org/licenses/mit-license.php > | |
*/ | |
function bin2dec(bin) { | |
var a, c, d, e, i, j, k; | |
a = bin.split(); | |
c = []; | |
d = []; |
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
<snippet> | |
<content><![CDATA[<!doctype html>]]></content> | |
<tabTrigger>doctype</tabTrigger> | |
<description><!doctype html></description> | |
</snippet> |
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
<snippet> | |
<content><![CDATA[<html lang="pt-br"> | |
<head> | |
<meta charset="UTF-8" /> | |
<link rel="stylesheet" href="css/" /> | |
<script src="js/"></script> | |
<title>$1</title> | |
</head> | |
<body> | |
$0 |
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
<snippet> | |
<content><![CDATA[ | |
\$(document).ready(function() \{ | |
$0 | |
\});]]></content> | |
<tabTrigger>jq</tabTrigger> | |
<description>document ready</description> | |
</snippet> |
OlderNewer