Skip to content

Instantly share code, notes, and snippets.

View adriculous's full-sized avatar
💕
Stay safe everyone!

Adrianne Padua adriculous

💕
Stay safe everyone!
View GitHub Profile
@adriculous
adriculous / gist:a13eb06a10acb4b2f9c09adc8c103fdd
Created April 14, 2016 03:33
Emmet for the Antsy (Part One) - Emmet HTML Output #2
<div>
<ul>
<li></li>
</ul>
</div>
@adriculous
adriculous / gist:d6f0de920cc6b9e973c9a29162dd9688
Created April 14, 2016 03:36
Emmet for the Antsy (Part 1) - Emmet HTML Output 3
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
@adriculous
adriculous / gist:ebf81a13e091818f08a84e15dd7a2755
Created April 14, 2016 04:36
Emmet for the Antsy (Part 1) - Emmet Sample DOCTYPE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
</body>
</html>
@adriculous
adriculous / gist:f7c56b8e19878fa4b4e425fb0fe4bd0f
Last active July 25, 2019 17:09
Emmet for the Antsy (Part 2)
<!-- HTML5 using Emmet (! or html:5) results via Brackets text editor -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
</body>
@adriculous
adriculous / gist:bda2a7439bd1e2f3cd013dbd42e8c4c5
Last active July 25, 2019 17:09
Emmet for the Antsy (Part 2) - Emmet XHTML Transitional
<!-- XHTML Transitional using Emmet (html:xt) results via Brackets -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Document</title>
</head>
<body>
</body>
@adriculous
adriculous / gist:dc56f8c27014a0920b3103257c5732d9
Last active July 25, 2019 17:10
Emmet for the Antsy (Part 2) - Emmet XHTML Strict
<!-- XHTML Strict using Emmet (html:xs) results via Brackets -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Document</title>
</head>
<body>
</body>
@adriculous
adriculous / gist:d9f679e9963fea38824cfbf9d855e627
Last active July 25, 2019 17:11
Emmet for the Antsy (Part 2) - Emmet HTML4 Transitional
<!-- HTML4 Transitional using Emmet (html:4t) results via Brackets -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Document</title>
</head>
<body>
</body>
@adriculous
adriculous / gist:ba46e0dac0e0feabc3dc23a4dca7dc20
Last active July 25, 2019 17:12
Emmet for the Antsy (Part 2) - Emmet HTML4 Strict
<!-- HTML4 Strict using Emmet (html:4s) results via Brackets -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Document</title>
</head>
<body>
</body>
@adriculous
adriculous / gist:c549bd05cda6833287bf5614252a89af
Last active April 17, 2016 07:56
Emmet for the Antsy (Part 2) - Emmet Classes, IDs, (Text) Content, Attributes Markup Example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div id="container"></div>
</body>
</html>
@adriculous
adriculous / gist:f42d3f474f54f224a840f9278b67c7f4
Last active April 17, 2016 08:11
Emmet for the Antsy (Part 2) - Emmet Classes, IDs, (Text) Content, Attributes Emmet Example
/* Think CSS. Add the HTML element along with the ID! Be sure to press the TAB key after this! */
div#container
/* In fact, the element is optional too! Be sure to press the TAB key after this! */
#container