Skip to content

Instantly share code, notes, and snippets.

View blynx's full-sized avatar

Steffen blynx

View GitHub Profile
@BideoWego
BideoWego / kitchen-sink.html
Last active February 28, 2020 09:42
HTML Kitchen Sink, all of the HTML elements in order for styling, testing, etc..
<h1>HTML Kitchen Sink</h1>
<h2>a</h2>
<a href="#">a</a>
<br>
<h2>abbr</h2>
<abbr title="abbr">Mr. Mrs. Dr.</abbr>
<br>
@jonnyreeves
jonnyreeves / index.html
Created April 23, 2012 21:38
JavaScript Class Structure using requireJS. The following code shows you how to create a Class definition in one JavaScript file and then import it for use in another; coming from an ActionScript 3 background this (and some of JavaScript specific traits)
<!DOCTYPE html>
<html>
<head>
<script data-main="usage" src="http://requirejs.org/docs/release/1.0.8/comments/require.js"></script>
</head>
<body>
<p>Check your JavaScript console for output!</p>
</body>
</head>