Skip to content

Instantly share code, notes, and snippets.

@philippeantoine
Created April 25, 2011 08:48
Show Gist options
  • Save philippeantoine/940287 to your computer and use it in GitHub Desktop.
Save philippeantoine/940287 to your computer and use it in GitHub Desktop.
template
<!doctype html><html>
<head><meta charset="utf-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">
<title>HTML Template</title></head>
<body><h1>HTML template</h1>
<p>Text.</p>
<table>
<thead>
<tr><th>Col 1</th><th>Col 2</th></tr>
</thead>
<tr><td>text</td><td>42</td></tr>
<tr><td>text</td><td>42</td></tr>
</table>
<h2>code</h2>
<script src="https://gist.github.com/940287.js?file=tmpl.html"></script>
<h2>via</h2>
<ul>
<li><a href="http://foohack.com/resume/">Simple html template</a></li>
</ul>
<h2>log</h2>
<ul>
<li>2010-09-21 new
<li>2011-04-24 kiss
</ul>
<style>
* { font:1em monospace; padding:0; list-style:none; }
body { width:80ex; margin:auto; }
h1,h2,ul,p,table,pre { margin-top:1em; }
h1,h2 { color:blue }
h1:before { content: "# "; }
h2:before { content: "## "; }
li:before { content: "* "; }
table,td { border-top:1px solid grey; border-collapse:collapse; }
thead { background-color:black; color:white; }
td,th { padding:3px }
tr:nth-child(even) { background-color:lightgrey; }
</style>
</body></html>
<!doctype html><html>
<head><meta charset="utf-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">
<title></title></head>
<body>
<h1></h1>
<h2>log</h2>
<ul><li></ul>
<style>
* { font:1em monospace; padding:0; list-style:none; }
body { width:80ex; margin:auto; }
h1,h2,ul,p,table,pre { margin-top:1em; }
h1,h2 { color:blue }
h1:before { content: "# "; }
h2:before { content: "## "; }
li:before { content: "* "; }
table,td { border-top:1px solid grey; border-collapse:collapse; }
thead { background-color:black; color:white; }
td,th { padding:3px }
tr:nth-child(even) { background-color:lightgrey; }
</style></body></html>
@jeantil
Copy link

jeantil commented Apr 25, 2011

Encore des mises à jour pour ta formation ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment