February 23, 2005 Link Effects

Credits:
Tutorial Learned From Jenny

  • Download hilight.htc.
  • Upload it to your main directory.
  • Your CSS code should look like this:


    <style type=”text/css”>
    A{cursor:default;height:1px;behavior:url(hilight.htc);filter:progid:dximagetransf
    orm.microsoft.blinds(duration=1)}
    A:link{color:#000000; text-decoration:none;cursor:”default”}
    A:visited{color:#000000;text-decoration:none;font-weight:none}
    A:hover{color:#000000;text-decoration:none;background-color:none;font-weight:none;cursor:default}–>
    </style>

  • See in the code where it says filter:progid:dximagetransform.microsoft.
    blinds (duration=1)
    ? Well, where it says blinds (duration=1), replace that with whichever effect you like from below!
  • gradientwipe: Test
    barn(sProperties): Test
    zigzag(GridSizeX=5, GridSizeY=5): Test
    zigzag: Test
    randomdissolve: Test
    blinds: Test
    checkerboard: Test
    iris: Test
    pixelate: Test
    radialwipe: Test
    fade: Test
    inset: Test
    randombars: Test
    slide: Test
    spiral: Test
    stretch: Test
    strips: Test
    wheel: Test

    Hope this tutorial has helped you!

    Tutorial Re-Written By:

    Content Comments Off
    February 23, 2005 Basic Html


    Here I will teach your the basics of creating a website using html coding.

    First off, you must know where to write your html coding. DO NOT write it in word programs such as Microsoft Word, Corel Word Perfect, etc. Use a program like notepad which is probably the best.

    In order to start your page you need to start off with the following:

    <html>
    <head>
    <title>site name</title>
    </head>

    Now you need to enter your body or contents of your website. Put the following:

    <body>

    (Put your contents between the two)

    </body>

    You can put images or writing for your contents.

    To insert an image:
    <img src=”image name” width=”image width” height=”image height”>

    example: <img src=”darkmispic.jpg” width=”100″ height=”120″>

    To insert writing:
    <font size=”the size you want your text to be” face=”What style of text you want”>your text here</font>

    example: <font size=”3″ face=”verdana”>Hello and welcome to Darkmis29.</font>

    You can also add text links or use images as a link. Do the following:

    To insert text link:
    <a href=”yourlink.html”>what you want your text link to say</a>

    To insert image link:
    <a href=”yourlink.html”><img src=”image name”></a>

    To center images or text do the following:

    You need to put <center> in front of your text or image and the close it by placing </center> at the end.

    Hope this tutorial has helped you!

    Tutorial Written By:

    Content Comments Off