Lost Password?


Go Back   CodeCall Programming Forum > Web Development Forum > HTML Programming

HTML Programming Forum discussion covering HTML, XHTML, DHTML and all flavors of HTML. Hypertext Markup Language is used to create websites.

Closed Thread
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-23-2007, 07:09 PM
techni68 techni68 is offline
Programming Professional
 
Join Date: Dec 2006
Posts: 230
Rep Power: 9
techni68 is on a distinguished road
Question Multi-coloed links in html?

How can I create multi-colored links in htmL?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!

Sponsored Links
  #2 (permalink)  
Old 01-23-2007, 07:12 PM
techni68 techni68 is offline
Programming Professional
 
Join Date: Dec 2006
Posts: 230
Rep Power: 9
techni68 is on a distinguished road
Question What does # mean in this code?

What does the # mean in this code?It appears sevearl times and I know the code heps to define the background color.


<BODY TEXT="#092d07" LINK="#1FOOFF" VLINK= "#000000" ALINK="#000000" BGCOLOR="#ffffff">

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #3 (permalink)  
Old 01-29-2007, 08:58 PM
Matt's Avatar   
Matt Matt is offline
Learning Programmer
 
Join Date: Jan 2007
Location: Northwestern US
Posts: 47
Rep Power: 7
Matt is on a distinguished road
Default

The pound sign is the sign for a color defined in hex. It tells the computer that you will be referencing a color, and tells it how to handle it. Don't take it out!

For multicolored links (I think you mean escaping the default blue color), you have to set a different style. You can do this with your global CSS, if you are using it, or by just putting a style property in the <a> tag. Like so:
HTML Code:
<a href="http://www.google.com" STYLE="color: #C0C0C0">Visit Google!</a>
This will override the automatic blue rendering and assign the link the color of #C0C0C0, or light gray. Change the latter to whatever you please.
__________________
http://www.mattnichols.net
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #4 (permalink)  
Old 01-31-2007, 12:07 PM
xtraze xtraze is offline
Programming God
 
Join Date: Dec 2006
Location: Sri lanka
Posts: 921
Rep Power: 0
xtraze is on a distinguished road
Send a message via MSN to xtraze Send a message via Skype™ to xtraze
Default

If you want a link with multi colour, like a colour blend effect, Maybe you can try looking for some Javascripts or something.

I found this for you.
HTML3 Effects

Check the last section of the page. Scroll down.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #5 (permalink)  
Old 02-03-2007, 05:13 PM
Jaan's Avatar   
Jaan Jaan is offline
Mod
 
Join Date: Dec 2006
Location: Estonia
Age: 17
Posts: 937
Last Blog:
AdStar Ad Control Pa...
Rep Power: 17
Jaan is just really niceJaan is just really niceJaan is just really niceJaan is just really nice
Send a message via MSN to Jaan
Default

well.. if u want then you can try this code:

HTML Code:
<!-- ONE STEP TO INSTALL DANCING LINKS:

   1.  Add the first code in the HEAD of your HTML document  -->

<!-- STEP ONE: Add the first code to the HEAD of your HTML document  -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">

<! >
<! >

<!-- Begin
function initArray() {
for (var i = 0; i < initArray.arguments.length; i++) {
this[i] = initArray.arguments[i];
}
this.length = initArray.arguments.length;
}
var colors = new initArray(
"red",
"blue",
"green",
"purple",
"black",
"tan",
"red");
delay = .5; // seconds
link = 0;
vlink = 2;
function linkDance() {
link = (link+1)%colors.length;
vlink = (vlink+1)%colors.length;
document.linkColor = colors[link];
document.vlinkColor = colors[vlink];
setTimeout("linkDance()",delay*1000);
}
linkDance();
// End -->
</script>

<!-- Be sure to include some links in your HTML page!  -->

<!-- Script Size:  0.98 KB  -->
now your code will have lot's of colors
__________________


Cheap & Professional Web Design | Need help? Send a PM
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!

Sponsored Links
  #6 (permalink)  
Old 02-03-2007, 07:22 PM
techni68 techni68 is offline
Programming Professional
 
Join Date: Dec 2006
Posts: 230
Rep Power: 9
techni68 is on a distinguished road
Default

Thanks to everyone here on this topic especially Jaan ..that is quite an extensive script.which I have found very helpful.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #7 (permalink)  
Old 02-04-2007, 07:21 AM
Jaan's Avatar   
Jaan Jaan is offline
Mod
 
Join Date: Dec 2006
Location: Estonia
Age: 17
Posts: 937
Last Blog:
AdStar Ad Control Pa...
Rep Power: 17
Jaan is just really niceJaan is just really niceJaan is just really niceJaan is just really nice
Send a message via MSN to Jaan
Default

you're welcome
__________________


Cheap & Professional Web Design | Need help? Send a PM
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #8 (permalink)  
Old 02-04-2007, 07:57 AM
techni68 techni68 is offline
Programming Professional
 
Join Date: Dec 2006
Posts: 230
Rep Power: 9
techni68 is on a distinguished road
Default

Jaan..Glad you are here..When quality posters are aboard ..it makes reading much more delightful!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Closed Thread



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Removing HTML from a String using ColdFusion roger ASP, ASP.NET and Coldfusion 3 11-11-2008 03:19 PM
About HTML Onur Tutorials 0 08-28-2007 07:13 PM
HTML Basic Formatting clookid Tutorials 14 03-06-2007 04:10 PM
HTML Introduction clookid Tutorials 5 01-08-2007 10:43 PM
What is HTML, DHTML and XHTML? Lop HTML Programming 5 08-09-2006 12:00 PM


All times are GMT -5. The time now is 06:20 AM.

Contest Stats

WingedPanther ........ 2753.6
Xav ........ 2704
Brandon W ........ 1702.32
John ........ 1207.73
marwex89 ........ 1175.24
morefood2001 ........ 966.05
dcs ........ 655.75
Steve.L ........ 475.59
orjan ........ 418.58
Aereshaa ........ 383.54

Contest Rules

CodeCall Goal

Goal: 100,000 Posts
Complete: 100%


Complete - Celebrate!

Ads