summaryrefslogtreecommitdiff
path: root/data/home.html
blob: d1a200cf1a40134082ebfea4cdfccc77b4741f33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

<head>
<title>rekonq home page</title>
<style  type="text/css">

html{
margin:0;
padding:0;
}

body{
margin:0;
padding:0;
font-family: sans-serif;
font-size: 100%;
}

/* ------------------------------------------------------- */

div#container{
margin: 0;
}

div#header{
margin: 0;
padding: 2px;
background-color:#00f;
color: #ff0;
text-align: center;
}

div#footer{
background-color:#00f;
color: #ff0;
text-align: center;
}

/* ------------------------------------------------------- */

h2{
color: #00f;
}

td{
padding: 2em;
vertical-align: top;
}

td.bookmarks{
  border-left: 2px solid #0000FF;
  border-top-width: 0px;
  border-bottom-width: 0px;
}

.indent {
margin-left: 2em;
}
</style>

<!-- =================================================================================== -->

<script type="text/javascript">
function ToggleVisibility(image, element)
{
    // Find the image.
    var image = document.getElementById(image)

    // Find the element to hide/unhide.
    var element = document.getElementById(element)

    // Check the element's current state.
    if (element.style.display == "none")
    {
        // If hidden, unhide it.
        element.style.display = "block";
        image.src = "%1open.png";
    }
    else
    {
        // If not hidden, hide it.
        element.style.display = "none";
        image.src = "%1closed.png";
    }
}
</script>

<!-- =================================================================================== -->

</head>

<body>

<div id="header">
<h1>rekonq home page</h1>
</div>

<table width="100%">
<tr>
<td width="40%"><h2>History</h2></td>
<td width="60%"><h2>Bookmarks</h2></td>
</tr>

<tr>
<td>%2</td>
<td class="bookmarks">%3</td>
</tr>
</table>

<div id="footer">
rekonq, lightweight Web Browser for KDE based on Webkit.
</div>

</body>
</html>