diff options
author | Christian Cleberg <hello@cleberg.net> | 2023-05-22 15:34:10 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2023-05-22 15:34:10 -0500 |
commit | 601c0ae6a27a226a97e43920b85255bcce4cbac4 (patch) | |
tree | 45b99f5784111de2ecbc8ef8a3780040846d4a09 /index.html | |
download | office-601c0ae6a27a226a97e43920b85255bcce4cbac4.tar.gz office-601c0ae6a27a226a97e43920b85255bcce4cbac4.tar.bz2 office-601c0ae6a27a226a97e43920b85255bcce4cbac4.zip |
initial commit
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..107fe83 --- /dev/null +++ b/index.html @@ -0,0 +1,37 @@ +<!doctype html> +<html lang="en"> +<head> + <title>Office</title> +</head> +<body> + <h1>Office</h1> + <p>This website hosts <a href="https://git.sr.ht/~cmc/office" + rel="noreferrer,noopener" target="_blank">Office</a>, my fork of <a + href="https://github.com/zserge/awfice" + rel="noreferrer,noopener" target="_blank">Awfice</a>.</p> + <p>Office is a collection of tiny office suite apps:</p> + <ul> + <li>a word processor, a spreadsheet, a drawing app and a presentation + maker</li> + <li>each less than 1KB of plain JavaScript</li> + <li>each is literally just one line of code</li> + <li>packaged as data URLs, so you can use them right away, without + downloading or installing</li> + <li>you can also use them offline</li> + <li>but they can't store their state, so whatever you type there would be + lost on page refresh</li> + <li>the only way to save your job is to save a HTML or send it to the + printer/print to PDF.</li> + </ul> + + <h2>Office Suite Apps:</h2> + <ul> + <li><a href="/text/">Text Editor</a></li> + <li><a href="/code/">Code Editor</a></li> + <li><a href="/spreadsheet/">Spreadsheet</a></li> + <li><a href="/calculator/">Calculator</a></li> + <li><a href="/slides/">Slide Deck</a></li> + <li><a href="/drawing/">Drawing</a></li> + </ul> +</body> +</html> |