Dillo v3.1.1-46-g8a360e32
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 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" </style>\n"
36"</head>\n"
37"<body>\n"
38"<div class=\"main\">\n"
39"\n"
40"<h1>Quickstart</h1>\n"
41"\n"
42"<p>Welcome to Dillo " VERSION ", a small and fast graphical web browser. To\n"
43"access the help click the question mark button <code>?</code> in the top\n"
44"right corner at any time. Here are some tips to get you started:</p>\n"
45"\n"
46"<ul>\n"
47" <li>The main configuration file is at <code>~/.dillo/dillorc</code>.</li>\n"
48" <li>Most actions can also be done by using the <em>keyboard</em>.</li>\n"
49" <li>Cookies are <em>disabled by default</em>.</li>\n"
50" <li>Several Dillo plugins are available.</li>\n"
51"</ul>\n"
52"\n"
53"<p>See more details in the\n"
54"<a href=\"https://dillo-browser.github.io/\">Dillo website</a>.</p>\n"
55"\n"
56"</div>\n"
57"</body>\n"
58"</html>\n";
59
const char *const AboutSplash
HTML text for startup screen.
Definition about.c:18