Rassal

A tool made for simple presentations

LARGE HEADING

SMALL ONE

It uses simple HTML elements, like:

Заглавие на кирилица

Малко заглавие

An ordered list:

  1. Everything
  2. is
  3. auto-sized and auto-positioned

And here is a heading

Followed by a couple of

short paragraphs

A code sample


var obj = {
  fullName: "John K. Paul",
  alertName: function(greeting) {
    alert(greeting + " " + this.fullName);
  }
};

obj.alertName("Hey"); // Hey John K. Paul