SHOP PRODUCTS
Houzz Logo Print
claireplymouth

draft faq on html

OK, I finished wrapping and mailing the presents, the cards are sent, and the lights are up. I fed the birds, oiled the soapstone counters and did laundry. I considered cleaning the house but decided that writing an FAQ was better than that.

This is a draft and can be easily changed. All comments are welcome. I don't know much more than I've included here, so there may be gross errors. If so, please correct me.

The important thing is to get a FAQ that is easy to follow and will be useful to people who don't know code and probably aren't really interested in it.

Claire

Question - how do I jump from the contents list directly to a specific section?

.................................................................................................................................................................................................

HOW DO I CHANGE THE FONTS AND INSERT STUFF IN MY POSTS?

*INTRODUCTION TO HTML CODE

*ADDING COLORS

*CHANGING FONT SIZE

*MIXING UP THE COMMANDS

*WHAT COLORS CAN I USE?

*WHAT COMMANDS ARE THERE BESIDES COLOR AND SIZE?

*WHERE DID THE TAGS GO?

*HOW DO I INSERT A LINK?

*HOW DO I INSERT A PHOTO?

*REFERENCES

OK, so now you're comfortable with browsing the internet and posting on the Garden Web forums. But you feel your plain-Jane text is boring and lacking those nice, sophisticated flourishes like bold fonts, and underlines, and colors; and you'd like to post hyperlinks and pics like other people do.

You just have no idea how to do it. You've tried all the tricks that work fine in your word-processing programs, but nada, zilch, the web ignores your attempts.

The answer lies in knowing something about how web pages are actually constructed.

.................................................................................................................................................................................................

*INTRODUCTION TO HTML CODE

This is not brain surgery (although you can frazzle your brain if you try to leap into HTML (HyperText Markup Language) without an interpreter nearby.

The actual mechanics of setting up a web page is incredibly complicated, but you don't need to know the dirty little details of writing HTML code if all you want to do is underline a word. Just as you don't need to know how to wire your house if all you want to do is turn on a light.

Basically, you start out with some standard text of your choice and then you start adding "tags" whenever you want to change the appearance of the text, or to determine how a line of words works, or to link up your text with a different site or image.

For example, you might start out with a sentence:

"Yawn, this is even more boring than mowing the lawn."

and then you decide to jazz it up a little by adding tags:

"tagYawnend tag, this is tageven more boringend tag than tagmowing the lawnend tag."

Depending on which tags you chose, you might get this;

"Yawn, this is even more boring than mowing the lawn."

In a post in 2005 cady gave an excellent description of how to change font colors and sizes. With some changes, this is how she explained the procedure:

.................................................................................................................................................................................................

*ADDING COLORS

To code for color, use the words font color= as the base code, then add the name of the color you want. If you want the color green, for example, type inside the keyboard characters font color=green in front of the word, phrase or sentence you wish to make green. At the end of the line you want to make green, type /font inside the same keyboard characters.

Here is a color-coded sentence:

This sentence has the blues.

This sentence has the blues.

Note that there is a space between "font" and "color," but that there is no space separating "color," "=" and "blue."

.................................................................................................................................................................................................

*CHANGING FONT SIZE

Changing type size involves the same code structuring as for color, except that you use the words font size= instead. You end the size change command the same way as before, with /font as the closing command.

Also, type size is measured in points, as with actual typesetting. For example, when you use a word processing program, you can change the size of your font (type) by selecting a number: 8, 9, 10, 12, 14, etc. That's the point size.

Example of size change command:

This is 14pt type.

This is 14pt type.

So, to change type size here, you have to pick a number size. You can experiment with different numbers and see what happens.

.................................................................................................................................................................................................

*MIXING UP THE COMMANDS

You can have fun mixing words up with changes in font sizes, colors, italics, bold face and other attributes - all at the same time. To do a color change and a font size change together, follow this example to change a sentence:

This sentence is red and 24pt type. .

It will look like this:

This sentence is red and 24pt type.

Note that to end each command, you must put a /font twice at the end of the sentence. You do the same thing to add italic or bold type to the fun:

This sentence is bold, italic,
orange and 16pt! > /b >

It will look like this:

This sentence is bold, italic, orange and 16pt!

Note that you have to close the commands in the reverse order from that which you gave them -- that is, you commanded bold first, italic second, color third and size fourth. When you close the command, you start with the close-command for size, then color, then italic, then bold.

Keeping track is a bit of a challenge, so if you give a chain of code, and the words don't come out the way you wanted, it's probable that you reversed an order, forgot to close one of the commands, or something like that. If an entire block of text you typed has been turned italic, or yellow, or a different point size - when you wanted to change only one word or a phrase or sentence - it's because you forgot to put an end command in (such as /i or /font).

You can see your results in Preview Message, to make sure the type came out the way you want.

.................................................................................................................................................................................................

*WHAT COLORS CAN I USE?

Some common colors you can specify by name are:

AquaBlackBlueFuchsiaGrayGreenLime

MaroonNavy

OlivePurpleRedSilver

TealYellow

There are many more and you can find lists by searching on the internet for HTML Color Tags. If you absolutely must have a specific color, there are six figure hex codes that you can use.

.................................................................................................................................................................................................

*WHAT COMMANDS ARE THERE BESIDES COLOR AND SIZE?

A few useful tags are:

bold

underline

italic

small text

red

16 pt

.................................................................................................................................................................................................

*WHERE DID THE TAGS GO?

When the tag is properly typed, it will disappear into the page source and the command will be executed.

You can see this hidden HTML code world by ctrl-clicking on a web page (Mac) or right-clicking on the page (PC). A box will appear; click on View Page Source. You should see more than you ever wanted to know about how Web pages work. Sort of like looking at your compost under a microscope. Not for the faint-hearted.

Thanks to bob414 for showing me how to type without making the command disappear.

.................................................................................................................................................................................................

*HOW DO I INSERT A LINK?

To insert a link you need to first visit the site you want to link to. The URL (Uniform Resource Locator) is the web address at the top of the page. Highlight and copy this URL - all of it, starting from the http and continuing to the end, no matter how long.

Paste the URL on your page, for example:

http://forums.gardenweb.com/forums/

use the following command and give a name to the link:

Garden Web Forums

It's usually recommended to put the URL and the name in quotation marks. The quotes tell the machine these words belong together and not to worry about spaces before and after. Extra spaces can screw up the command, but it's not necessary if you're careful. The only spaces here should be between a and href, and between the words in the name Garden Web Forums. It may look like there is a space between "Garden Web Forums"

Garden Web Forums

.................................................................................................................................................................................................

*HOW DO I INSERT A PHOTO?

There's an excellent description in the FAQ for the Hot Peppers Forum

How Do I Add Pictures to My Posted Messages?

.................................................................................................................................................................................................

*REFERENCES

If you want to get deeper into the subject, it's best to do a web search using terms such as:

write HTML code

HTML Color Tags

HTML Tags/Codes

Comments (24)