Skip to content

Instantly share code, notes, and snippets.

@triptych
Forked from juandopazo/gist:1161269
Created September 21, 2012 22:01
Show Gist options
  • Select an option

  • Save triptych/3764195 to your computer and use it in GitHub Desktop.

Select an option

Save triptych/3764195 to your computer and use it in GitHub Desktop.
YUI Boilerplate?
<!DOCTYPE html>
<html>
<head>
<title>My App</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/combo?3.4.0/build/cssreset/cssreset-min.css&
3.4.0/build/cssfonts/cssfonts-min.css&3.4.0/build/cssgrids/cssgrids-min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<script src="http://yui.yahooapis.com/3.4.0/build/yui/yui-min.js"></script>
<script>
YUI().use(function (Y) {
// my code
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment