Dillo v3.2.0-88-g47ab7c70
Loading...
Searching...
No Matches
about.c
Go to the documentation of this file.
1/*
2 * File: about.c
3 *
4 * Copyright (C) 1999-2007 Jorge Arellano Cid <jcid@dillo.org>
5 * Copyright (C) 2024-2025 Rodrigo Arias Mallo <rodarima@gmail.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 */
12
13#include <config.h>
14
18const char *const AboutSplash=
19"<!DOCTYPE HTML>\n"
20"<html>\n"
21"<head>\n"
22" <title>Quickstart</title>\n"
23" <style>\n"
24" body {\n"
25" background: white;\n"
26" margin: 3em;\n"
27" font-size: 16px;\n"
28" font-family: sans-serif;\n"
29" line-height: 1.4em;\n"
30" }\n"
31" .main { max-width: 40em; }\n"
32" p { margin-top: 1em; }\n"
33" ul { margin-left: 1em; }\n"
34" li { margin-top: 0.5em; }\n"
35" kbd {\n"
36" display: inline-block;\n"
37" border: solid 1px #999;\n"
38" padding: 1px 3px;\n"
39" }\n"
40" </style>\n"
41"</head>\n"
42"<body>\n"
43"<div class=\"main\">\n"
44"\n"
45"<h1>Quickstart</h1>\n"
46"\n"
47"<p>Welcome to Dillo " VERSION ", a small and fast graphical web browser. To\n"
48"access the help click the question mark button <code><kbd>?</kbd></code> in the top\n"
49"right corner at any time. Here are some tips to get you started:</p>\n"
50"\n"
51"<ul>\n"
52" <li>The main configuration file is at <code>~/.dillo/dillorc</code>.</li>\n"
53" <li>Most actions can also be done by using the <a href='about:keys'>keyboard</a>.</li>\n"
54" <li>Cookies are <em>disabled by default</em>.</li>\n"
55" <li>Several Dillo plugins are available.</li>\n"
56"</ul>\n"
57"\n"
58"<p>See more details in the\n"
59"<a href=\"https://dillo-browser.github.io/\">Dillo website</a>.</p>\n"
60"\n"
61"</div>\n"
62"</body>\n"
63"</html>\n";
64
const char *const AboutSplash
HTML text for startup screen.
Definition about.c:18