login about faq


I'm setting up a website for a friend to host his art, and using very simple html. Is there a piece of code I could use to force the color of the border for the pictures:

asked Dec 16 '10 at 20:43

samiam2013's gravatar image

samiam2013
466161727


It is pretty simple to do. Since it is a link, you'll need to change the color of the link. You can achieve this through the <body> tag. You'll have to insert the attributes link, alink, and vlink. It should look something like this:
<body link="#FFFFFF" alink="#FFFFFF" vlink="#FFFFFF">.

You can find out different HTML color codes by going to

Also, I looked at your code a little bit, and you don't need two <body> tags, and a table should look like this:
<table><tr><td></td></tr></table>
Make sure that you have your closing tag switches (</td></tr> and </table>). I kept looking at your code, and I saw that you did have them further on, but for one of the tables, it's not there.

If you have any further questions, please ask.

answered Dec 16 '10 at 21:36

catchatyou's gravatar image

catchatyou
20.7k89165383

edited Dec 16 '10 at 21:42

Another thing. You can't change the font in the <title>. Just like you can't make the text bold, italic, underlined...

(Dec 16 '10 at 21:39) catchatyou catchatyou's gravatar image

You probably shouldn't accept my answer yet. We should work it out until all of your problems are fixed, but thank you in advance (I've never heard or a uni.cc domain suffix. Thank you).

(Dec 16 '10 at 21:46) catchatyou catchatyou's gravatar image

Also, the method you mentioned uses depricated HTML. I would suggest using CSS, if you don't, the webpage with become outdated and it won't work. Also, why in the world is there an

inside the header?

(Dec 16 '10 at 22:06) DanielHep DanielHep's gravatar image

Okay, this is some of the worst code I've ever seen. If you'd like me to design a website and build it for you, just let me know. I'd be happy to do it completely free. I'll even throw in a content management system!


answered Dec 16 '10 at 22:09

DanielHep's gravatar image

DanielHep
461182331

You shouldn't criticize, because he's probably somewhat new to HTML. I would use CSS too for some things, but if this person's starting out, it might be a little bit over his/her head. Have some empathy, you've been there at one point as well...

(Dec 16 '10 at 22:31) catchatyou catchatyou's gravatar image
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or __italic__
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported


Join Us in the Chat Room

Tags:

×142
×52
×14
×2

Asked: Dec 16 '10 at 20:43

Seen: 880 times

Last updated: Dec 16 '10 at 22:31