Skip to content

Instantly share code, notes, and snippets.

View stvnrlnd's full-sized avatar

Steven Roland stvnrlnd

View GitHub Profile
@stvnrlnd
stvnrlnd / doctype.html
Last active February 23, 2017 17:27
The HTML5 doctype
<!DOCTYPE html>
@stvnrlnd
stvnrlnd / html.html
Created February 23, 2017 18:09
The html tag
<html>
</html>
@stvnrlnd
stvnrlnd / head.html
Created February 24, 2017 16:40
The HTML head tag
<head>
</head>
@stvnrlnd
stvnrlnd / title.html
Created February 24, 2017 16:44
The HTML title tag
<title>
</title>
@stvnrlnd
stvnrlnd / base.html
Created February 24, 2017 16:45
The HTML base tag
<base href="">
@stvnrlnd
stvnrlnd / link.html
Created February 24, 2017 16:49
The HTML link tag
@stvnrlnd
stvnrlnd / meta-1.html
Last active February 26, 2017 06:14
The HTML meta tag
<meta charset="">
@stvnrlnd
stvnrlnd / style.html
Created February 24, 2017 16:53
The HTML style tag
<style>
</style>
@stvnrlnd
stvnrlnd / script.html
Created February 24, 2017 16:54
The HTML script tag
<script src=""></script>
<script></script>
@stvnrlnd
stvnrlnd / noscript.html
Created February 24, 2017 16:55
The HTML noscript tag
<noscript>
</noscript>