Question:
HTML questions!!!?
Jamie Chang
2008-07-23 20:18:30 UTC
1st question: I want to know how to change the border color, background color, scrollbar color, and text color in a textarea
i looked everywhere but i cant find it!!!!!

2nd question: on myspace how do you change the contact table design? including the font and background

3rd question: on myspace how do you cover the comments and the friend list?

plz give me the codes for those!!
thank you!! <33
Three answers:
Enlightment109
2008-07-23 20:23:34 UTC
http://www.myspace-crash-codes.com/



This is the best site for the codes youre looking for.
screenmutt
2008-07-24 03:39:04 UTC
Well, this isn't really HTML. Rather it's CSS or cascading style sheets. Included below is a link to a tutorial site. Go through it and you shouldn't have any more problems.
harika
2008-07-24 04:51:32 UTC
1. What is HTML?

2. How do I start?

3. How do I change the color of my background or text?

4. How do I use a picture as the background?

5. How do I add music to my page?

6. How do I align text next to a graphic?

7. How do I make a graphic a link?

8. How do I begin a new paragraph?

9. How do I make headings and text larger or smaller?

10. Where can I find graphics to use on my page?

11. How do I make text show as bold

12. How do I make text show in italics?

13. How do I know if my HTML is correct?

Reference Links



1. What is HTML?

HyperText Markup Language:

HTML is a plain text file with commands to tell the Web browsers how to display the file.

Tim Berners-Lee created HTML while at CERN, (the European Laboratory for Particle Physics) in Geneva.



2. How do I start?

Here's a basic HTML document layout:







Snowi's Stuff



(Note: The words between the TITLE tags, in this case, "Snowi's Stuff" will show up on the header line of browsers viewing the page; and also, it will be the default title when the page is added to a browser's favorites or bookmarks.)







Snowi's Stuff





Type the "stuff" here.



(Note: The following is how to make the word "Snowhawk's" a link to the Web page http://www.snowhawk.com/)

Snowhawk's









That's the basic beginnings of writing an HTML file. You save it in notepad, word, whatever text editor, as yourfile.html (or .htm if your system doesn't allow 4 characters for the file type). Then you FTP the file to your server. [Your ISP (Internet Service Provider) will give you their FTP address of where to upload your files. If your service doesn't offer Web site space, there are several that offer free Web space.]



3. How do I change the color of my background or text?

Include the element "bgcolor" with a color code in your body tag:



BGCOLOR: is the color you want for the background

TEXT: the color you want to designate for regular text

LINK: the color for new text links (pages that have not been displayed by the reader's browser)

VLINK: the color for text links to pages that the reader's browser has already displayed

ALINK: the color a text link will change to during the process of choosing it (as it is clicked with the mouse)

* Color codes: Web Safe Color Chart and also Non-Dithering Colors by Hue



To change the color of a word, or sentence, you put before the text you want colored, and at the end. (substituting the "cc0000" with the code for the color you want)

In the color code "#CC0000" - the "CC" position is red, center "00" position is green, and last "00" position is blue.

Web Safe Colors use lower numbers for darkest colors, going 00, 33, 66, and 99, then cc, and ff... with 'ff' being the lightest.



4. How do I use a picture as the background?

Include the element "background" with the name of the graphics file:



(Note: the "bgcolor" element remained along with the added "background" element. This way, the browser will display the color you designate while the background graphic is loading. Not required, but using a color similar to the background file will ensure viewers can see your page well enough to begin reading while the background graphic is loading.)



5. How do I add music to my page?

Some people use the Netscape specific &/or Explorer specific code, however I recommend you make it a link and let the reader choose whether or not they want to hear music.

Like this...

Heaven on Earth would allow the reader to choose the link Heaven on Earth. Then the reader's software will open the link for them to hear the midi. Some people do use the other method, however it is only operational to that specific browser. (Like only Netscape users could hear it for Netscape's specific code.. or the same for Internet Explorer's code.)



6. How do I align text next to a graphic?

By including the "align" element in the "img" tag.

wildflower photo Photo of wildflowers in Texas

(The align="top" would align the text "Photo of wildflowers in Texas" next to the graphic at the top. - Other options are "middle" or "bottom.")



7. How do I make a graphic a link?

Including the "img" tag between the "a href" tag and the "a" closing tag:

link to wildlife



8. How do I make a new paragraph?

Inserting the

tag at the beginning of your paragraph will drop the text down two lines. (If you insert the
tag, it will drop your text down one line.)



9. How do I make headings and text larger or smaller?

There are 6 sizes to the heading tags:



This is using the

tag

This is using the

tag

This is using the

tag

This is using the

tag

This is using the

tag

This is using the
tag

You would type this as follows:

Heading here, ending with the closing tag



The next text you type would then be displayed 2 lines below.



The Heading tags will default align to the left. If you want to center the heading, you would use:



Heading here





...to have the heading aligned to the right, you would use:



Heading here







To adjust the size of any text, use the to go smaller one size, ending with closing tag And for text one size larger.



To center any text, or image, you begin the line with the center tag:

text




Always close the last tag first... such as "font" was closed before "center" above; otherwise the browsers have a "field day" with your text.

10. Where can I find graphics to use on my page?

There are many sites offering free use of graphics, although most will require a link to them, showing credit. You can do a search at any of the search engines and get thousands of places to look. You can also buy CDs with graphics on them. Check to be sure they state "royalty free" on the CDs. Here's my collection of graphics links, which includes how to make your own graphics, and where to find graphics offered by folks for public domain.



11. How do I make text show as bold?

Placing the tag before the text will make everything bold, until you close the tag with (Or using tags will do the same.)



12. How do I make text show in italics?

Placing the tag before the text will make everything in italics, until you close the tag with (Using emphasis tags will do the same.)



13. How do I know if my HTML is correct?

It's good to validate your HTML. Just because you can see the Web page ok on your browser doesn't mean every browser will show it that way, or even be able to access the Web page. Browsers attempt to "work around" HTML errors, and the differences can be subtle or drastic. That's why the folks at WC3 have worked up the specifications of what works for every browser. Although some may display it a little different, at least you know they can access your page. (The different browser programs have their own set of "whistles and bells" that just won't do the same... especially Microsoft Internet Explorer and Netscape Navigator.)



You can check your HTML by entering the page URL at http://validator.W3.org/.


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...