tazweb view data/bookmarks.html @ rev 35

Handle a Bookmarks file in /home/pankso/.config/tazweb/bookmarks.html
author Christophe Lincoln <pankso@slitaz.org>
date Fri Apr 15 00:22:20 2011 +0200 (2011-04-15)
parents
children
line source
1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <title>My Bookmarks</title>
5 <meta charset="utf-8" />
6 <style type="text/css">
7 body { font: 88% sans-serif, vernada, arial; margin: 0; }
8 #header { background: #351a0a; height: 40px; border-bottom: 8px solid #d66018; }
9 #content { margin: 40px 80px; text-align: justify; }
10 h1 { margin: 0; padding: 8px; color: #fff; font-size: 20px; }
11 h2 { color: #444; } h3 { color: #666; font-size: 140%; }
12 ul { list-style-type: square; line-height: 140%; }
13 a { color: #215090; } a:hover { text-decoration: none; color: blue; }
14 </style>
15 </head>
16 <body>
18 <div id="header">
19 <h1>My Bookmarks</h1>
20 </div>
22 <!-- Start content -->
23 <div id="content">
25 <!--
26 Welcome to your TazWeb Bookmarks page a pure xHTML 5 file with some
27 CSS for the design, you can customize it as you want. To add a section
28 title you can use <h2></h2> elements or sub-section with <h3></h3>
30 Here is an example of a bookmark entry, copy and past it somewhere
31 between an <ul></ul> element to add a entry in the list.
33 <li><a href="URL">NAME</a></li>
34 -->
36 <h2>SliTaz Network</h2>
37 <ul>
38 <li><a href="http://www.slitaz.org/">Website</a></li>
39 <li><a href="http://scn.slitaz.org/">Community</a></li>
40 <li><a href="http://forum.slitaz.org/">Forum</a></li>
41 <li><a href="http://doc.slitaz.org/">Documentation</a></li>
42 <li><a href="http://bugs.slitaz.org/">Bugs</a></li>
43 </ul>
45 <h2>Search Engines</h2>
46 <ul>
47 <li><a href="http://www.google.com/">Google</a></li>
48 <li><a href="http://en.wikipedia.org/wiki/Special:Search">Wikipedia</a></li>
49 <li><a href="http://scroogle.org/">Scroogle</a></li>
50 <li><a href="http://search.yahoo.com/">Yahoo</a></li>
51 </ul>
53 <!-- End content -->
54 </div>
56 </body>
57 </html>