Skip to content

Instantly share code, notes, and snippets.

View zenoven's full-sized avatar
🎯
Focusing energy

zenoven zenoven

🎯
Focusing energy
View GitHub Profile
@zenoven
zenoven / ie-conditional.html
Last active December 24, 2015 00:19 — forked from slalx/taobaohtml
HTML:IE-conditional
<!--[if lt IE 8]><html class="ltie8 ie"> <![endif]-->
<!--[if IE 8]><html class="ie8 ie"> <![endif]-->
<!--[if gt IE 8]><html class="gtie8"><![endif]-->
<!--[if !IE]><!--><html><!--<![endif]-->
</html>
@zenoven
zenoven / html-common-transitional-structure.html
Last active December 24, 2015 00:19
HTML:common-transitional-structure
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<!-- <link rel='stylesheet' href='' type='text/css' media='screen' /> -->
<!--<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js'></script>-->
</head>
@zenoven
zenoven / html5-common-structure.html
Last active January 8, 2020 04:00
HTML:common HTML5 structure
<!DOCTYPE html>
<html>
<head>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="" />
<meta name="keywords" content="" />
<!-- <link rel='stylesheet' href='' type='text/css' media='screen' /> -->
<!--<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js'></script>-->