Skip to content

Instantly share code, notes, and snippets.

View khoerodin's full-sized avatar
:octocat:
Meow everyday

Khoerodin khoerodin

:octocat:
Meow everyday
View GitHub Profile
@khoerodin
khoerodin / EmptyTableMarkup.html
Created November 14, 2012 16:23
Empty Table Markup
<table>
<thead>
<tr>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
@khoerodin
khoerodin / HTMLElementJustForIE.html
Created November 15, 2012 00:39
Add HTML Element Just For IE
<!--[if IE ]>
<body class="ie">
<![endif]-->
<!--[if !IE]>->
<body>
<!--<![endif]-->
@khoerodin
khoerodin / HTMLElementJustForIE.html
Created November 15, 2012 00:42
Add HTML Element Just For IE
<!DOCTYPE html>
<!--[if IEMobile 7 ]> <html dir="ltr" lang="en-US"class="no-js iem7"> <![endif]-->
<!--[if lt IE 7 ]> <html dir="ltr" lang="en-US" class="no-js ie6 oldie"> <![endif]-->
<!--[if IE 7 ]> <html dir="ltr" lang="en-US" class="no-js ie7 oldie"> <![endif]-->
<!--[if IE 8 ]> <html dir="ltr" lang="en-US" class="no-js ie8 oldie"> <![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html dir="ltr" lang="en-US" class="no-js"><!--<![endif]-->
@khoerodin
khoerodin / HTML4.01Strict.html
Created November 15, 2012 01:00
HTML 4.01 Strict
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
@khoerodin
khoerodin / XHTML1.0Strict.html
Created November 15, 2012 01:02
XHTML 1.0 Strict
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
@khoerodin
khoerodin / XHTML1.0Transitional.html
Created November 15, 2012 01:04
XHTML 1.0 Transitional
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
@khoerodin
khoerodin / XHTML1.1.html
Created November 15, 2012 01:05
XHTML 1.1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
@khoerodin
khoerodin / HTML5.html
Created November 15, 2012 01:06
HTML 5
<!DOCTYPE html>
@khoerodin
khoerodin / HTMLAcronymTooltips.html
Created November 15, 2012 01:42
HTML Acronym Tooltips
I love <acronym title="HyperText Markup Language">HTML</acronym>.
@khoerodin
khoerodin / CenteringaWebsite.html
Created November 15, 2012 01:52
Centering a Website
<body>
<div id="page-wrap">
<!-- all websites HTML here -->
</div>
</body>