Skip to content

Instantly share code, notes, and snippets.

@peteymoore
peteymoore / md_header
Created January 29, 2014 19:44
markdown header
<head>
<link rel="stylesheet" type="text/css" href="http://www.public.iastate.edu/~pmoore/css/jdmarkdown.css" />
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
});
</script>
<script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
</head>
@peteymoore
peteymoore / html5_basic
Created November 8, 2013 20:21
barebones html5 starter
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML5 Template</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
</body>
@peteymoore
peteymoore / gist:5392815
Last active December 16, 2015 06:39 — forked from nfrade/gist:4446653
HTML5 barebones template
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML5 Template</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
</body>