More than Just a Rating discussion
tips
>
HTML Formatting Tips
date
newest »

Wow Vicky, thanks for the lesson. I've known how to use HTML for a long time, but I never knew what the codes and letters stand for.
[image error]
[image error]
I forgot to bring over BunWat's tip (from 'Do we always have to mark spoilers?). This helped me even more after reading Vicky's explanation of html.
She said:
"So basically any of the tags work the same
write many watermelony things
say something very ironic
These don't work because there is no watermelon tag or irony tag, so you can see the structure. But if you were to put spoiler, or b (for bold) or i (for italics) where I wrote watermelon or irony, then you'd have a working tag."
She said:
"So basically any of the tags work the same
write many watermelony things
say something very ironic
These don't work because there is no watermelon tag or irony tag, so you can see the structure. But if you were to put spoiler, or b (for bold) or i (for italics) where I wrote watermelon or irony, then you'd have a working tag."


It has to be on the web to include it in a post. You can use a free image hosting site to get them online though. Some good options are:
Photobucket - http://photobucket.com/
Flickr - http://www.flickr.com/
Picasa (by Google) - https://picasaweb.google.com/




It's in post #1, after how to make things bold and before how to add images.

I think this is happening on my more recent reviews.
Thank you.
You'll have to ask in the feedback group - I have no idea, but it seems like a bug. As always, of course, you can try clearing your cache, using a different device and browser, logging in and out.... But if nothing like that works, def. try asking in Feedback.
The HTML tag always has to be enclosed within the inequality symbols "<" and ">." Example: <b> for bold, <i> for italic, <u> for underline.
Using bold as an example:
Typing <b> opens the HTML tag, or tells the browser "from here on out, I want my text to be bold."
Unless you want everything else you type in that post to be bold you have to tell the browser by closing the tag. To close a tag you use "/" within the inequality symbols - </b>.
Links and images are a little different (this is where it might get a little confusing!).
The HTML string for links is <a href=""> </a>.
The "a" is the anchor tag - called because it "anchors" two things together. Just like an anchor "links" your boat with the sea floor, it links your text to a URL.
The "href" (which stands for hypertext reference) is an attribute of the "a" tag, which is why you only the "a" is closed at the end of the HTML string.
Images are similar - to insert an image you use <img src="imagelink.jpg"> where "img" is the tag and "src" (standing for source) is a link to (or the source of!) the image you want to share. When closing the tag, you only have to type </img>.
To put this into more everyday terms... say I have a ball pit, and I want to take out blue ball to play with.
I take out a blue ball. <ball color="blue">
I'm done playing with the ball and put it back. </ball>
We already know the ball is blue, so we don't have to say it again.