In Feburary 2016 08,
Open the HTML source code of the page that will contain the flashing text. Website owners should log into cPanel at their website hosting account. Click on 'File Manager' and then select the page. Click on 'Edit' to open the HTML source code. Follow the instructions of your web-editing software if using an external software or program to access the HTML.
Use blink tags to create flashing text. These tags work by themselves in certain browsers or as part of the Javascript code for other browsers. Place the
tag in front of the text that will blink. Place the
tag at the end of the text. For example, if you want to make the word 'Go' flash on and off, use this line:
go
.
Add Javascript codes to make text flash in Internet Explorer or other browsers that do not support the blink tags. However, you must still use the blink tags because this script uses them in conjunction with the Javascript code to make the flashing text. Find the beginning and ending head tags (
and
) in the HTML source code. Place the following code between those tags:
Modify the flashing speed as desired by changing the '500' in the Javascript code. This script uses milliseconds (1,000 milliseconds equal one second). For example, changing the number to '2000' will cause the text to flash on for two seconds and then off for two seconds.
In Feburary 2016 08,