Skip to content

Instantly share code, notes, and snippets.

@mainiak
Last active September 25, 2020 15:51
Show Gist options
  • Save mainiak/a00aaee903fdc2567866 to your computer and use it in GitHub Desktop.
Save mainiak/a00aaee903fdc2567866 to your computer and use it in GitHub Desktop.
HTML introduction, CSS, JS, JavaScript, ECMA, HTML5, SVG

HTML, CSS, JS

Preparations

Reading

Other

jQuery

Semantic UI

Backbone

ES2015 aka ES6

HTML5

CSS

Node.js

Browser&Node compatible client

Export by method

exports.a = function () {}
exports.b = function () {}

Export all

module.exports = {}

Samples

<link rel="stylesheet" type="text/css" href="semantic/dist/semantic.min.css">
<script src="semantic/dist/semantic.min.js"></script>
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Page Title</title>
  <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/semantic-ui/2.2.6/semantic.min.css">
</head>
<body>

  <script src="https://cdn.jsdelivr.net/semantic-ui/2.2.6/semantic.min.js"></script>
</body>
</html>