diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..29d1b4e --- /dev/null +++ b/index.html @@ -0,0 +1,96 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>Dillo Website</title> + <style type="text/css"> +body { + background: white; + line-height: 1.5; + margin: 3em; + font-family: sans-serif; +} +/*a { color: black }*/ +.main { + /*background: lightgreen;*/ + margin: 2em auto; + width: 50em; +} +h1 { + margin-top: 0.25em; + margin-bottom: 0.25em +} +h3 { + color: #56f; + background: #f0f0f0; + padding: 0.5em +} +.github-button { padding: 0.5em; border: 1px solid lightgrey; float: right; + background: #f5f5f5 } +.github-logo { height: 1.5em; vertical-align: middle; } +.shot { width: 8em; margin: 0; border: none } + </style> + </head> + <body> + <div class="main"> + <div class="github-button"> + <img class="github-logo" src="img/gh.png"/> + <a href="https://github.com/dillo-browser/dillo">View on GitHub</a> + </div> + <h1>Welcome to the Dillo Website</h1> + <p>Dillo is a fast and small graphical web browser with the following features: </p> + <ul> + <li>Multi-platform, running on Linux, BSD, MacOS and even Atari.</li> + <li>Written in C and C++ with few dependencies.</li> + <li>Implements its own real-time rendering engine.</li> + <li>Low memory usage and fast rendering, even with large pages.</li> + <li>Uses the fast and bloat-free <a href="https://www.fltk.org/">FLTK</a> GUI library.</li> + <li>Support for HTTP, HTTPS, FTP and local files.</li> + <li>Extensible with plugins written in any language + (<a href="https://github.com/topics/dillo-plugin">search on GitHub</a>). + </li> + <li>Is free software licensed with the GPLv3.</li> + <li>Helps authors to comply with web standards by using the + <a href="old/help/bug_meter.html">bug meter</a> + <img style="vertical-align:middle" src="img/bugmeter.png" />.</li> + </ul> + + <h2>Screenshots</h2> + <a href="img/plan9.png"><img class="shot" src="img/mini-plan9.png"/></a> + <a href="img/armadillo.png"><img class="shot" src="img/mini-armadillo.png"/></a> + <a href="img/suckless.png"><img class="shot" src="img/mini-suckless.png"/></a> + <a href="img/aaronsw.png"><img class="shot" src="img/mini-aaronsw.png"/></a> + <a href="img/hackernews.png"><img class="shot" src="img/mini-hackernews.png"/></a> + <a href="img/100r.png"><img class="shot" src="img/mini-100r.png"/></a> + <p align=right>...check <a href="old/screenshots/index.html">the archives</a> for more pictures.</p> + <h2>Project objectives</h2> + <ul> + <li>Lower the barrier of entry to the web.</li> + <li>Support old or small machines and slow connections.</li> + <li>Personal security and privacy.</li> + <li>High software efficiency.</li> + </ul> + <p> + Check the <a href="old/index.html">old website</a> for more details. + </p> + <h2>Download</h2> + <p>Download Dillo from the + <a href="https://github.com/dillo-browser/dillo/">git repository</a> + and follow the instructions in the README to install it. + </p> + <h2>Contributing</h2> + <p>We always welcome contributions, here are several ways in which + you can help:</p> + <ul> + <li>Use Dillo to browse the web and if you find something that + is not working, + <a href="https://github.com/dillo-browser/dillo/issues/new">report it</a>. + </li> + <li>Spread the word, so the world knows Dillo exists and is + still alive.</li> + <li>Implement some new feature or fix some bug and send us a + patch or create a pull request.</li> + </ul> + </div> + </body> +</html> |