View Single Post
Posts: 35 | Thanked: 17 times | Joined on Jan 2008
#1
I have created a simple speeddial HTML page for access to frequently used bookmarks, as in Opera.

I think someone has already done it before, but I wanted to share the html just in case. Note that you can change your homepage to this page in the web browser (Tools-Settings-Connection): Home page address should be stg. like:

file://localhost/home/user/MyDocs/.documents/speeddial.html
and "Use default home page" should be clear (not selected).

Here is the html, the values you should change are "value" and "location" tags' values.

Save the following as an html file with the name speeddial.html
Code:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html> <head>
<title>Speeddial</title>
</head>

<body>
<h1></h1>

<table align="center">
  <tr>
    <td><input type="button" value="Go to Google"
onClick="window.location='http://www.google.com/'" style="width:
180; height: 100"></td>
<td><input type="button" value="Eksisozluk"
onClick="window.location='http:/sozluk.sourtimes.org/'" style="width:
180; height: 100"></td>
<td><input type="button" value="BBC"
onClick="window.location='http://news.bbc.co.uk/'" style="width:
180; height: 100"></td>
    </tr>
 <tr>
    <td><input type="button" value="Facebook"
onClick="window.location='http://www.facebook.com/'" style="width:
180; height: 100"></td>
<td><input type="button" value="GMail"
onClick="window.location='http://www.gmail.com/'" style="width:
180; height: 100"></td>
<td><input type="button" value="NTV"
onClick="window.location='http://www.ntvmsnbc.com/'" style="width:
180; height: 100"></td>
    </tr>
     <tr>
    <td><input type="button" value="Go to Google"
onClick="window.location='http://www.google.com/'" style="width:
180; height: 100"></td>
<td><input type="button" value="Go to Google"
onClick="window.location='http://www.google.com/'" style="width:
180; height: 100"></td>
<td><input type="button" value="Go to Google"
onClick="window.location='http://www.google.com/'" style="width:
180; height: 100"></td>
    </tr>
    </table>
    
</body> </html>
A sample screenshot is attached (though I took the screenshot in my Mac.)
Attached Images
 
 

The Following 10 Users Say Thank You to ustunozgur For This Useful Post: