Free Republic
Browse · Search
General/Chat
Topics · Post Article


1 posted on 10/25/2012 7:26:19 PM PDT by ObozoMustGo2012
[ Post Reply | Private Reply | View Replies ]


Navigation: use the links below to view more comments.
first previous 1-2021-30 last
To: ObozoMustGo2012

There plenty of web based tutorials for html. Here are a several: http://html.net/ ,http://html.net/tutorials/html/ , or http://htmldog.com/guides/htmlbeginner/


27 posted on 10/25/2012 8:10:51 PM PDT by A Formerly Proud Canadian (I once was lost but now I'm found; blind but now I see.)
[ Post Reply | Private Reply | To 1 | View Replies ]

To: ObozoMustGo2012; JoeProBono


28 posted on 10/25/2012 8:14:27 PM PDT by shibumi (Cover it with gas and set it on fire.)
[ Post Reply | Private Reply | To 1 | View Replies ]

To: ObozoMustGo2012

One thing you may already know is that you can copy and paste a link and it will automatically be posted as a clickable link in your post.

However if you add a single HTML tag of your own then the auto feature is turned off, and you must format your entire post with HTML. Even a link. And even paragraph brakes/ line spacing.

Also no images are hosted on FR. They must be hosted off site.
Video and audio embedding are not allowed.


29 posted on 10/25/2012 8:14:34 PM PDT by Revel
[ Post Reply | Private Reply | To 1 | View Replies ]

To: ObozoMustGo2012
FR uses simple HTML. CSS and JavaScript are stripped out, including the style attribute. So, if you want green text, you have to use the archaic color attribute, e.g., <font color=#080>green text</font>. You can't use the modern way to do that: style="color:#080".

The first rule is, you don't have to use HTML. If your post doesn't contain anything that looks like HTML, then it gets presented pretty much as written. The only major change I'm aware of is that anything that looks like a link gets link-enabled automatically.

However, if your post does have any HTML, then it needs to be proper HTML. E.g., if you include a link, you need to enclose it in an <a> tag, or it won't be live; it will be just text. You also need to insert proper paragraph and newline markers, or your post will end up as a monolithic blob of text.

So, you just need to learn some of the basic HTML markup elements, such as the ones for links, italics, bold face, headings, block quoting, ordered and unordered lists, tables, images, etc. A good place to start is w3schools.com.

One function that trips people up is images. FR doesn't host images. To show an image on FR, it has to be hosted on the web somewhere (other than FR). Once you have a URL, it's pretty simple (usually). You just drop the image URL into an img element. If it's your own photo or whatever, you need to upload it to a hosting service (e.g., PhotoBucket) first, then obtain the URL, and post.

Occasionally, a picture will look just fine until you post it on FR, whereupon it either doesn't show at all or a different image shows. What is happening is, the server from which the image is being fetched is taking umbrage at the fact that the image request is referred from an FR page and is serving up nothing or something else. This phenomenon can be hard to notice as well, since the image is already in your browser cache, so it works when you preview (you get the cached image), but not for anybody else. It's also possible that an image will get taken down, moved, or changed by whoever is hosting it.

One way past the above problems is to rehost an image. That is, to say, to place a copy of it on another server, then post the URL to that copy. There is actually a Firefox extension, Rehost Image, that makes that really simple. You right-click on the image, select Rehost Image, and it will upload the image to a hosting service such as imgur and copy the short URL to the clipboard.

35 posted on 10/25/2012 8:27:09 PM PDT by cynwoody
[ Post Reply | Private Reply | To 1 | View Replies ]

To: ObozoMustGo2012

Im really quite surprised that no one has said anything about it. We all know the most common mistake made while posting to FreeRepublic.com is forgetting to Log On.


36 posted on 10/25/2012 8:30:17 PM PDT by Delta 21 (Oh Crap !! Did I say that out loud ??!??)
[ Post Reply | Private Reply | To 1 | View Replies ]

To: ObozoMustGo2012

Tip if using Firefox. To see how someone did a post, select the post with your mouse and then right click and choose “view selection source” . It will show you how someone else coded their post.


38 posted on 10/25/2012 8:34:12 PM PDT by Raycpa
[ Post Reply | Private Reply | To 1 | View Replies ]

To: ObozoMustGo2012

May I offer a comment about a personal pet peeve?

When posting, please utilize the “keyword” feature so that Free Republic articles are categorized in somewhat of a chronological news database. This would help others when doing research or when just trying to find an interesting article that we need to review or share with someone else.

Thanks! And welcome to the Freeperhood!


62 posted on 10/25/2012 9:26:03 PM PDT by Perseverando (Gun control? It's the OBOTS who are filling up prisons for violent crimes, not the Tea Party.)
[ Post Reply | Private Reply | To 1 | View Replies ]

To: ObozoMustGo2012

No sarcasm? On FR?


72 posted on 10/25/2012 10:05:12 PM PDT by mykroar (October race/religious riots bring November martial law. Voting postponed for your safety.)
[ Post Reply | Private Reply | To 1 | View Replies ]

To: ObozoMustGo2012

Congratulations, your single thread has probably garnered more hits than all of mine in 8 years. Of course I would never post a thread like this because it takes about 3 seconds to figure out what you would like to do on your own merit.


76 posted on 10/25/2012 10:14:34 PM PDT by eyedigress ((zOld storm chaser from the west)/?)
[ Post Reply | Private Reply | To 1 | View Replies ]

To: ObozoMustGo2012
images are separate subject because you have to upload them to an image host like fliqr.com and link to them - it's easy, but a separate subject. That said, it's not REALLY necessary to learn HTML.
  1. Go out on the internets and find a free wysiwyg editor.
  2. For almost all of these, you have the ability to type into a MS Word like interface, where you can highlight something and click bold, and it will turn bold.
  3. Then, when you're done, there is probably an 'HTML' view for the editor where you can, copy and paste, the actual HTML that you generated.
  4. That said, there are really only about 6 HTML tags you have to understand to just type it in realtime.
  5. Just remember, as soon as you use ONE html tag in your post, the entire post is going to be interpreted as HTML. Hence, if you use a single instance of any html, like tag pair for italics: <i> and </i>, be prepared that you have just declared that you are using your own HTML, and FR will not interpret line breaks and paragraphs for you any more.
  6. if you learn tag pairs for italics, bold, maybe font color, singular tags for line breaks and new paragraphs, and maybe strikethrough, underline, subscript and superscript, you'll be fine.
  7. I don't know about the sandbox, but w3schools.com is where I always go if I need a quick reference on markup and many software language issues. Learning CSS will give you the most power with html - you can get that @w3schools too.

84 posted on 10/26/2012 4:05:39 AM PDT by HannibalHamlinJr
[ Post Reply | Private Reply | To 1 | View Replies ]


Navigation: use the links below to view more comments.
first previous 1-2021-30 last

Free Republic
Browse · Search
General/Chat
Topics · Post Article


FreeRepublic, LLC, PO BOX 9771, FRESNO, CA 93794
FreeRepublic.com is powered by software copyright 2000-2008 John Robinson