Skip to content

Instantly share code, notes, and snippets.

@j-hannes
Created May 21, 2016 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j-hannes/777c1adb396b5bb83da0967e3f2ef6cd to your computer and use it in GitHub Desktop.
Save j-hannes/777c1adb396b5bb83da0967e3f2ef6cd to your computer and use it in GitHub Desktop.
Counter HTML
<!doctype html>
<html>
<head>
<title>a simple elm counter</title>
</head>
<body>
<div id="counter"></div>
<script src="counter.js"></script>
<script>
var counterContainer = document.getElementById('counter')
Elm.Counter.embed(counterContainer)
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment