LiveWire Network Peer Answers Peer Support Teen Forums Tech Forums College Forums 370 users online 225365 members 276 active today Advertise Here Sign In
TeenCollegeTechPhotos | Quizzes | LiveSecret | Memberlist | Dictionary | News | FAQ
Member Spotlight
mandible
Values: robust
Mood: Euphoric
You have 1 new message.
Emergency Help
Until you sign up you can't do much. Yes, it's free.

Sign Up Now
Membername:
Password:
Already have an account?
Invite Friends
Active Members
Groups
Contests
Moderators
3 online / 23 MPM
Fresh Topics
  LiveWire / Technical Forums / Web Design & Search Engine Optimization / Adding Reply

Adding Reply
Archived Topic: It will not be bumped to the top of the forum.
Topic HTML question
Membername   Not a member? Sign Up Free (takes 20 seconds)
Password   Forgotten your password?
Post

Font:   Size:   Color:

FAQ Keyword Search:
Post Options
Favorites Manager
Notify me of new replies to this topic by email
Notify me of new replies to this topic by private message
Original Post
BodomKills Posted at 4:01 pm on Dec. 15, 2007
i want to take a word and make it red and Also turn it into a link so people can click on it. For example

"Aftermath" in red and link it to my bands website.

help please?

Replies
antriver Posted at 5:09 pm on Feb. 24, 2008
Code:
<a href="url here" style="color:#ff0000;">Aftermath</a>
Ethryx Posted at 11:38 pm on Dec. 15, 2007
You could just as easily use

Code:
<a href="url here"><font color=ff0000>Aftermath</font></a>

RossTheHoss69 Posted at 8:19 pm on Dec. 15, 2007
Make the document look mostly like this:
Code:

<html>
<head>
<style>
a, a:link, a:visited
{
color:red;
text-decoration:none;
}
a:hover
{
color:red;
text-decoration:underline;
}
</style>
</head>
<body>
<a href="url here">Aftermath</a>
</body>
</html>
Keego05 Posted at 4:10 pm on Dec. 15, 2007
Post from this position was omitted due to content violations
allsmiles Posted at 4:10 pm on Dec. 15, 2007
in the <BODY /> tag put in the attribute link=#FF0000. Assuming you don't want to use CSS. Link (<A />) is
Code:
<a href="URL">Text</a>
All 5 previous replies displayed.