Announcement


Grab your free HTML codes here! Everything from basic music HTML codes, cool font codes, even free cursor codes! You can copy/paste these codes straight into your web page, and in most cases, your MySpace page. Best Use fresh Javascript source code into your web pages easy. Get scripts and apply to your page. Learn to copy and paste Java code, source code. In free-webcodes, you will find a categorized listing of free php scripts, commercial php scripts, php resource, php tutorials, web resources, php hosting and more. We have also developed several free php scripts at free-webcodes.blogspot. You can find them in the label section to the right. The code is downloadable from php.net too.

Google Tricks

Enter just the word http for your search to find the top 1000 PageRanked sites.

Enter only www in your search to see how Google ranks the top 1,000 sites.

Manually type the following prefixes and note their utility:


  • link:url Shows other pages with links to that url.

  • related:url same as "what's related" on serps.

  • site:domain restricts search results to the given domain.

  • allinurl: shows only pages with all terms in the url.

  • inurl: like allinurl, but only for the next query word.

  • allintitle: shows only results with terms in title.

  • intitle: similar to allintitle, but only for the next word. "intitle:seoforgoogle google" finds only pages with seoforgoogle in the title, and google anywhere on the page.

  • cache:url will show the Google version of the passed url.

  • info:url will show a page containing links to related searches, backlinks, and pages containing the url. This is the same as typing the url into the search box.

  • spell: will spell check your query and search for it.

  • stocks: will lookup the search query in a stock index.

  • filetype: will restrict searches to that filetype. "-filetype:pdf" to remove Adobe PDF files.

  • daterange: is supported in Julian date format only. 2452384 is an example of a Julian date.

  • maps: If you enter a street address, a link to Yahoo Maps and to MapBlast will be presented.

  • phone: enter anything that looks like a phone number to have a name and address displayed. Same is true for something that looks like an address (include a name and zip code)

  • site:www.somesite.net "+www.somesite.+net" - (tells you how many pages of your site are indexed by google)

  • allintext: searches only within text of pages, but not in the links or page title

  • allinlinks: searches only within links, not text or title


  • http://www.seoforgoogle.com/google-tricks.cfm

    FREE-CODE: Redirect to a New Page

    <!-- Redirect to a New Page -->
    <meta HTTP-EQUIV="REFRESH" content="0; url=http://free-webcodes.blogspot.com/">

    FREE-CODE: Embedding Web Pages within Web Pages

    <!-- Embedding Web Pages within Web Pages-->

    <object data=http://freecodesonly.blogspot.com width="600" height="400"> <embed src=http://freecodesonly.blogspot.com  width="600" height="400"> </embed> Error: Embedded data could not be displayed. </object>

    FREE-CODE: Colored Text Boxes

    <!-- Colored Text Boxes-->

    <INPUT type="text" STYLE="color: #FFFFFF; font-family: Verdana; font-weight: bold; font-size: 12px; background-color: #72A4D2;" size="10" maxlength="30">

    Changing Table Background Colors on Mouseover (IE ONLY)

    <!-- Changing Table Background Colors on Mouseover (IE ONLY) -->

    <TABLE BORDER="2" CELLPADDING="2" WIDTH="100%">
    <TR onMouseover="this.bgColor='#EEEEEE'"onMouseout="this.bgColor='#FFFFFF'">
    <TD>Your Table Data</TD>
    </TR>
    <TR onMouseover="this.bgColor='#EEEEEE'"onMouseout="this.bgColor='#FFFFFF'">
    <TD>Your Table Data</TD>
    </TR>
    <TR onMouseover="this.bgColor='#EEEEEE'"onMouseout="this.bgColor='#FFFFFF'">
    <TD>Your Table Data</TD>
    </TR>
    </TABLE>

    This HTML code allows your visitors to choose a background color for your website.


    <!-- HTML Code to choose a background-->

    <form name="changeColor">
    <p><font size="2" face="Verdana,Arial,Helvetica,Sans Serif">Choose
    a Background Color: <br> <br> <input type="button" name="colr"
    value=" BLUE " onclick="document.bgColor='#0000FF'"> <input
    type="button" name="colr" value=" RED " onclick="document.bgColor='#FF0000'">
    <input type="button" name="colr" value=" GREEN "
    onclick="document.bgColor='#00FF00'"> <input type="button"
    name="colr" value=" WHITE " onclick="document.bgColor='#FFFFFF'">
    <input type="button" name="colr" value=" BLACK "
    onclick="document.bgColor='#000000'"></font> </p> </form>

    FREE-CODE: Mouseover Alert HTML Script

    <!-- Mouseover Alert HTML Script-->

    <a href="http://linkurlhere.com"
    onMouseOver="alert('PUT YOUR MESSAGE HERE');return true;">Link Text Goes
    Here</a>