This tut will show you how to add multiple websites/import infomation to your desktop.
First you need to open notepad (start > run > notepad.exe)
Then type the following HTML code;
Save The File As *What Ever You Want*.HTML and open it in your web browser, you should get something like this;HTML Code:<HTML> <HEAD></HEAD> <BODY bgcolor="#66bbcc"> <DIV style="width: 70%; background: #ffffff; border: 2px solid #000000; float: left; padding: 5px"> </DIV> <DIV style="width: 27%; float: right; background: #ffffff; border: 2px solid #000000; padding: 5px;"> </DIV> </BODY> </HTML>
Now you can add things to it. Below are some codes. Add them between the 1st or 2nd div tags;
Habbo Login Code (Adds a login form to your desktop)
Iframe (Adds another website to your desktop, best to put this code insite the 1st div tag)HTML Code:<form action="https://www.habbo.co.uk/account/submit" method="post" class="login-habblet"> Habbo Username:<br> <input tabindex="1" type="text" class="login-field" name="credentials.username" id="login-username" value="" /> <br> Habbo Password:<br> <input tabindex="2" type="password" class="login-field" name="credentials.password" id="login-password" /> <br> <input tabindex="3" type="hidden" name="_login_remember_me" id="login-remember-me" value="true"/> <input type="submit" value="Sign in" class="submit" /> </form><br><br>
Image (Adds an image to the page)HTML Code:<IFRAME src="URL OF WEBSITE YOU WANT ON YOUR DESKTOP HERE" width="100%" height="400"></IFRAME><br><br>
Habbo Tag SearchHTML Code:<IMG src="IMAGE URL HERE" /><br><br>
For the one below you will need php installed on your computer;HTML Code:<form name="tag_search_form" action="http://habbo.co.uk/tag/search" class="search-box"> <input type="text" name="tag" id="search_query" value="" class="search-box-query"/><br> <input type="submit" value="Habbo Tag Search" title="Habbo Tag Search" class="search" /> </form><br><br>
Amount Of Habbos Onine (Displays The Amount Of Habbos Online)
You can allso add Google Video/YouTube Videos.PHP Code:<?php
$page = file_get_contents("http://www.habbo.co.uk");
$start = explode('<span class="stats-fig">', $page, 2);
$end = explode('</span>', $start[1], 2);
$amount = trim($end[0]);
echo "<font size=2 face=arial>There are $amount Habbos online!</font>";
?>
<br><br>
Once you have added some of those things your html file should look something like this.
Once your happy with it you can add it to your desktop.
Click start >
Run >
Type 'rundll32.exe' >
click on the desktop tab >
click browse >
locate the html file >
and click open >
Then click apply and your desktop should refresh to the one you made.
Hears An Example;








Reply With Quote








