We Blogging We Unite We Support Each Other

Saturday, January 22, 2011

Make a marquee text

Make your text scroll across your page using simple html, which loads fast. Here I use the <marquee> tag. The code is below.



<div align="center"><FONT 
color="#ffffff" size="+1"><MARQUEE bgcolor="#000080" 
direction="right" loop="20" width="75%"><STRONG>This 
is cool!</STRONG></MARQUEE></FONT></DIV>

Scrolling upward text or vertical text.
You can use the html marquee tag to make your text scroll upward. This tag does not work in Netscape browsers.
Here I have used simple html to make the text scroll upward. Because this is just straight html, it loads very fast and is easily placed into any page on any server.
Below is an example of how it can be used.
THIS IS A COOL WAY
TO MAKE YOUR TEXT
SCROLL UPWARDS

IT IS EASY AND FAST LOADING

And here is the code that I used. Just copy and paste the code into your html document where you want the scrolling text to show.

(Homesteaders, use the "insert html" element and drag the html snippett where you want the scrolling text to appear on your page.)
You can change the font color and the background color to suit. You can make it wider if required and you can set the speed of the scroll by changing the "scrollamount" variable. The higher the number, the faster the speed of scroll.
Handy hint.
To select all the code in the text box, click inside the box and press your keyboards ctrl + a. To copy the text ctrl+c and to paste into your html document ctrl+v



<div 
align="center"> <marquee bgcolor="#000080" scrollamount="2" 
direction="up" loop="true" width="35%"> <center> 
<font color="#ffffff" size="+1"><strong> THIS 
IS A COOL WAY<br> TO MAKE YOUR TEXT<br> SCROLL UPWARDS<br> <br> 
IT IS EASY AND FAST LOADING </strong></font> </center> </marquee></div>
Copy From: http://www.hypergurl.com

© Krul Blogger Group

HTML Code For Download Link

The destination URL points to the file you want downloaded. In this case it is a Zip filecalled aff-masters.zip.
Source
<a href="http://www.goldcoastwebdesigns.com/dl/aff-masters.zip"target="_blank">Download Link</a>
Output
You will notice that the link is set to open in a new browser window. The reason for this is because if the link is not set to open in a new browser window, when the link is clicked, the page where the download link is located will sometimes disappear.
The only drawback to setting these links to open in a new browser window is that pop-up blocking software might block the new browser opening. In this case, it is suggested to instruct visitors to turn pop-up blocking programs off while downloading from your page.
A regular hyperlink can be coded instead of the one above but the visitor should be instructed to right-mouse-click/alternate-mouse-click on the link and select "Save Target As" from the menu.

The PDF Download Link

Source
<a href="http://www.goldcoastwebdesigns.com/dl/aff-masters.pdf">Download Link</a>
Output
Right-Click Menu
Caution: Clicking a link that points to a PDF file will not cause it to download to your hard drive directly. It will only download and open the file in your web browser.
It's true you can save a copy of the PDF from the browser, but most people do not know this. For this reason, it is best to instruct people to right-mouse click the link and save the file to their hard drive.
Tip: How do you know in advance if the link you are going to click on is a normal web page, a PDF (.pdf) file, a Zip (.zip) file or an executable (.exe) program? Check the status bar before clicking.

Relative Links

The example HTML codes above illustrate hyperlinks with an absolute path. The path is absolute because the full URL is given as the value.
It is however possible to give a relative value like this:
Source
<a href="dl/aff-masters.pdf">Download Link</a>
Output
You will notice that the value given above is relative to two things:
1. The location of the file being downloaded.
2. The location of the page where the link to the download resides.
So, if this page you are reading right now was located in the dl directory, in order for thedownload link to work, the HTML would need to look like this:
<a href="aff-masters.pdf">Download Link</a>
In other words, if the download page is located in the same directory as the file to bedownloaded, the above code would be used.
Anchor - Local Button
Tip: Users of 1st Page 2000 free HTML editor, can simply click on the Anchor - Local button to create relative links without mistakes. This button is located on the Tabbed Palette in Expert mode.
Obviously, to use this feature, the directory structure on your web site should be the same as it is on your hard drive in order for the links to work.

The HTML Download Button

HTML buttons can also be used to download files. Visit to-3gp.com to see these exact buttonsin action across the entire website.
Source
<form><input type="button" value="Download Now"onClick="window.location.href='/dl/aff-masters.exe'"></form>
Output

Additionl Tips

About Zip (.zip) Files
Not everybody knows how to unzip .zip files because additional software needs to be installed on the users computer in order to unzip the file. For this reason, it can be a good idea to supply aself extracting zip file so that the user can unzip the file without installing additional software.
If you would like to see a demonstration of a self extracting zip file in action, use the downloadlink below:
Download Demo File - aff-masters.exe - 1.23 MB
After the file has downloaded, just double click the file to start unzipping. By default, the file will unzip to C:\Aff-Masters. But you can set it to unzip anywhere you want. After the file is unzipped, you will own an excellent marketing book in PDF format.



© Krul Blogger Group
Related Posts Plugin for WordPress, Blogger...