/pow

An experimental HTML5 presentation tool.

Primary LanguageJavaScriptOtherNOASSERTION

About

POW is a simple presentation system for HTML5.

Features:

  • Write slides with simple HTML
  • Apply consistent styles using CSS
  • Flexible scripting using JavaScript
  • Extensible through modules
  • Self-embedding for standalone offline use

Example

See POW in action (and view source): usepow.com

The markup for a simple presentation looks like this:

<html>
<head>
    <script src="http://usepow.com"></script>
</head>
<body>
    <div id="slides">
        <div class="slide">
            <h1>Hello, world.</h1>
        </div>
    </div>
</body>
</html>