<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Quick &amp; Dirty HTML Primer</title>
    <description>Quick &amp; Dirty HTML Primer</description>
    <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609</link>
    <item>
      <author>Dragonchilde</author>
      <title>Quick &amp; Dirty HTML Primer</title>
      <description>Unlike many forums on the web, we do not use the [BB CODE] specification. Here, we use good old-fashioned HTML.

This... can be confusing. So, I'm going to do a quick primer of the tags you'll be using most often, and hopefully this will help you post signatures, add emphasis to your posts, and overall look REALLY cool.

 
 &lt;strong&gt;Links&lt;/strong&gt; 
 
First, is the link. In web designer speak, we use an anchor tag for this... what it means to you is that you can format your links prettily. 
 You can just post the link like so:&#160;&lt;a href="http://www.nanowrimo.org/" title="http://www.nanowrimo.org" rel="nofollow"&gt;http://www.nanowrimo.org&lt;/a&gt;&#160;and the forum will automatically convert it for you. However, you might want to make it clickable, and pretty, so that it doesn't ugly-up your post! 
 &lt;a href="http://www.nanowrimo.org/" rel="nofollow"&gt;Like So.&lt;/a&gt; 
 
Here's how you do this: 

	&amp;lt;a href="URL"&amp;gt;Clickable Text&amp;lt;/a&amp;gt; 
 
It's important to remember to "close your tag", that is, add a &amp;lt;/a&amp;gt; at the end of the text, otherwise everything after it will be clickable. Not pretty at all. ;) 

 You can also do a clickable email link the same way, only instead of using a URL, you'll use the following within the quotation marks:&#160;mailto:EMAIL&#160;ADDRESS 

 Be wary of this one, though, as any email address you may post on the forum may be harvested by spam bots. It's generally not a wise idea to post your email address unless absolutely necessary. 

 &lt;strong&gt;Italics&lt;/strong&gt; 

 Italics were updated with the new XHTML specifications. The technical term for this is "deprecated". The old tag, &amp;lt;i&amp;gt;, is no longer valid, so it doesn't work. The arcane deity known as the "W3C" decided this is so, so it is. ;) 

 What does this mean to you? Well, it means that to make it work, you have to get with the program, and use their new, approved tag. 

 &lt;em&gt;Italicized Text&lt;/em&gt; 

 To do this: 
 &amp;lt;em&amp;gt;Italicized Text&amp;lt;/em&amp;gt; 
 Easy-peasy! This one also needs to be closed, or your whole post will be italicized. 

 &lt;strong&gt;Bold Text&lt;/strong&gt; 

 Sometimes, you just gotta&#160;&lt;strong&gt;shout&lt;/strong&gt;! Like the italics, the old &amp;lt;b&amp;gt; tag was deprecated. So now, we use a new tag: &amp;lt;strong&amp;gt;. 

 To make your text bolder, use the following: 
 &amp;lt;strong&amp;gt;Bolded Text&amp;lt;/strong&amp;gt; 

 This is also a tag that needs to be closed, or your entire post will be bolded. 

 &lt;strong&gt;Lists&lt;/strong&gt; 

 The next bit of code you're like to use is a list. Sometimes, you want to order your thoughts, or you want a bulleted list. These can be simulated with regular characters, such as a dash ( - ) for a bullet, or numbering manually. However, lists offer two advantages: Prettier, easier to read formatting, and autonumbering. If you add an item in the middle of your list, the ordered list option will rearrange your numbers for you, instead of you having to go in and retype them all. 

&lt;ol&gt;
&lt;li&gt;This is an ordered list&lt;/li&gt;
	&lt;li&gt;Your items will be numbered in order&lt;/li&gt;
&lt;/ol&gt; To do this: 
 &amp;lt;ol&amp;gt; 
	&amp;lt;li&amp;gt;First item&amp;lt;/li&amp;gt; 
	&amp;lt;li&amp;gt;Second item&amp;lt;/li&amp;gt; 
	&amp;lt;/ol&amp;gt; 

&lt;ul&gt;
&lt;li&gt;This is an unordered list&lt;/li&gt;
	&lt;li&gt;Your items will be presented with bullets&lt;/li&gt;
&lt;/ul&gt; To do this: 
 &amp;lt;ul&amp;gt; 
	&amp;lt;li&amp;gt;First item&amp;lt;/li&amp;gt; 
	&amp;lt;li&amp;gt;Second item&amp;lt;/li&amp;gt; 
	&amp;lt;/ul&amp;gt; 
 
The construction of both of these lists is the same, with one small difference. Make sure you use the right opening and closing tags: &amp;lt;ol&amp;gt;&amp;lt;/ol&amp;gt; for an ordered list, and &amp;lt;ul&amp;gt;&amp;lt;/ul&amp;gt; for an unordered list. 
 
&lt;strong&gt;Images&lt;/strong&gt; 

 We know why you're all here. Admit it; you want a pretty image in your signature, or you want to post an image in your post. Well, this will tell you how to do just that! 

 Before I do, let me remind you of a few guidelines: Keep your images small, and don't use too many. If someone has to scroll past half a screen to get by your signature, a moderator may ask you to remove it. HQ has asked that signature banners be no larger than 500 pixels wide x 100 high and 30kb in size- and that's the combined total of images in your signature. You can add signatures under &lt;a rel="nofollow"&gt;My NaNoWriMo&lt;/a&gt; =&amp;gt; &lt;a rel="nofollow"&gt;Edit User Settings&lt;/a&gt; [NOTE: THIS FEATURE IS NOT YET AVAILABLE.]

 Unlike the other tags, the image tag doesn't need to be closed with a second tag. It's a standalone. 
 If you want to post this: 

 &lt;img alt="2006 Winner" src="http://i2.tinypic.com/4dhickz.gif"&gt; 

 Here is how you do so: 
 &amp;lt;img src="IMG URL" /&amp;gt; 

 Note the little forward slash at the end. ;) That is how you denote a tag that doesn't need to be closed with a second tag. 
 
Please note that images must be hosted elsewhere for you to link them. You can use photobucket, a private web host (some don't allow hotlinking, so check with your host - Geocities is one of these that disallows linking from elsewhere.) My personal favorite is&#160;&lt;a href="http://www.tinypic.com/" rel="nofollow"&gt;TinyPic&lt;/a&gt;, because it's quick and easy, and doesn't require a link back like photobucket does. 

 Now, if you really want to get squirrely? You can make your PICTURES clickable, by nesting tags. 

 &lt;a href="http://tinypic.com/" rel="nofollow"&gt;&lt;img src="http://i2.tinypic.com/4dhickz.gif"&gt;&lt;/a&gt; 

 To do this: 
 &amp;lt;a href="URL you want to link to"&amp;gt;&amp;lt;img src="Image URL" /&amp;gt;&amp;lt;/a&amp;gt; 

 There, that was your not-so-quick, not-so-dirty primer on how to use XHTML on this forum. This will actually work on any web page (except forums that have HTML disabled, of course). If you have questions, feel free to ask! </description>
      <pubDate>Mon, 10 Oct 2011 14:53:19 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_1144</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_1144</guid>
    </item>
    <item>
      <author>ObiKimono</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>Have the strikes been removed?</description>
      <pubDate>Tue, 11 Oct 2011 05:56:02 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_3956</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_3956</guid>
    </item>
    <item>
      <author>Lousy Writer 13</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>[quote=ObiKimono]Have the strikes been removed?[/quote]

Well, strike is supposed to still work... but it appears to be broken. It is in the list of items to be fixed.
</description>
      <pubDate>Tue, 11 Oct 2011 07:23:50 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_4511</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_4511</guid>
    </item>
    <item>
      <author>Marauders Girl</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>Okkay for posting pictures? Are you supposed to leave the space in between the quote mark and the forward slash? Or is that space just in there in the above post to keep it from formatting and not letting people be able to see what they're actually supposed to write? </description>
      <pubDate>Wed, 12 Oct 2011 18:14:14 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_33099</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_33099</guid>
    </item>
    <item>
      <author>tiakall</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>Awesome, I miss strikethrough.  What about &amp;lt;center&amp;gt;?</description>
      <pubDate>Wed, 12 Oct 2011 20:41:57 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_35375</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_35375</guid>
    </item>
    <item>
      <author>Lousy Writer 13</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>The spaces are all there just to show the command.</description>
      <pubDate>Wed, 12 Oct 2011 20:58:01 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_35643</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_35643</guid>
    </item>
    <item>
      <author>bunnyhero</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>the &amp;lt;b&amp;gt; and &amp;lt;i&amp;gt; tags aren't actually deprecated, although their use is often discouraged, because they're presentational. but they certainly aren't deprecated in any current HTML or XHTML standard as far as i know.

on the other hand, &amp;lt;strike&amp;gt; and &amp;lt;s&amp;gt; &lt;em&gt;are&lt;/em&gt; deprecated :)
</description>
      <pubDate>Wed, 12 Oct 2011 22:44:13 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_37225</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_37225</guid>
    </item>
    <item>
      <author>Absotively</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>&lt;a href="http://www.w3.org/TR/html5/text-level-semantics.html#the-s-element" rel="nofollow"&gt;&amp;lt;s&amp;gt; seems to have been un-deprecated for HTML5.&lt;/a&gt;</description>
      <pubDate>Thu, 13 Oct 2011 11:31:48 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_43519</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_43519</guid>
    </item>
    <item>
      <author>Dragonchilde</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>Center isn't a working HTML tag here. :) Sorry! We don't have any plans to add it at this time. </description>
      <pubDate>Thu, 13 Oct 2011 13:42:10 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_45035</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_45035</guid>
    </item>
    <item>
      <author>Dragonchilde</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>The space between the quotation mark and the closing slash in the IMAGE tag is indeed appropriate format.  I've used ascii arrows so the tag shows exactly how you should copy it. :) </description>
      <pubDate>Thu, 13 Oct 2011 13:43:18 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_45045</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_45045</guid>
    </item>
    <item>
      <author>Lousy Writer 13</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>Yeah, I think I wasn't clear enough in my response. The spaces in the opening tag are what I was referring to. Sorry about that.</description>
      <pubDate>Thu, 13 Oct 2011 15:53:46 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_46686</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_46686</guid>
    </item>
    <item>
      <author>bunnyhero</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>good to know!

now if i could only edit my previous post... ;)</description>
      <pubDate>Thu, 13 Oct 2011 17:05:04 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_47625</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_47625</guid>
    </item>
    <item>
      <author>bunnyhero</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>what about BLINK and MARQUEE?

(just kidding! ;)</description>
      <pubDate>Thu, 13 Oct 2011 17:05:41 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_47636</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_47636</guid>
    </item>
    <item>
      <author>Absotively</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>I'm glad you can't.  If you did, it'd look like I'm complaining about nothing. :)

While I'm nitpicking your previous post: the HTML 5 spec also gives examples of semantic uses of &amp;lt;b&amp;gt; and &amp;lt;i&amp;gt; (and &amp;lt;u&amp;gt;).  So they're not strictly presentational (now), and presumably that's why they aren't deprecated.

&amp;lt;blink&amp;gt;, on the other hand, continues to be non-standard. :D</description>
      <pubDate>Fri, 14 Oct 2011 00:28:02 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_53007</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_53007</guid>
    </item>
    <item>
      <author>KaitTTT</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>&lt;strong&gt;MUST&lt;/strong&gt; &lt;em&gt;PRACTICE&lt;/em&gt;</description>
      <pubDate>Wed, 19 Oct 2011 02:06:40 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_120879</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_120879</guid>
    </item>
    <item>
      <author>KatrinaPink</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>Is there something comparable to Facebook's "@", which automatically creates a link to a person's profile? Or do I just use the "a href" command?</description>
      <pubDate>Thu, 20 Oct 2011 00:23:24 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_136722</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_136722</guid>
    </item>
    <item>
      <author>Keladryie</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>It's just the ahref command - but that would be really nifty if we could have that! You should suggest it in the Suggestions section of the forums :)</description>
      <pubDate>Thu, 20 Oct 2011 05:25:07 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_138755</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_138755</guid>
    </item>
    <item>
      <author>heartsong2000</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>Ukaaay!  As regards: "You can add signatures under My NaNoWriMo =&amp;gt; Edit User Settings"

Went there.  I don't see anything regarding "signatures."  Am I missing something?  [Aside from needing another cup of coffee....]  Thanks! 
</description>
      <pubDate>Sun, 30 Oct 2011 12:44:59 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_298770</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_298770</guid>
    </item>
    <item>
      <author>Lousy Writer 13</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>[quote=heartsong2000]
Ukaaay!  As regards: "You can add signatures under My NaNoWriMo =&amp;gt; Edit User Settings"

Went there.  I don't see anything regarding "signatures."  Am I missing something?  [Aside from needing another cup of coffee....]  Thanks! 

[/quote]

You're not missing something... something is missing.  It's a &lt;a href="http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/605" rel="nofollow"&gt;Known Issue&lt;/a&gt;.</description>
      <pubDate>Sun, 30 Oct 2011 15:07:22 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_301189</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_301189</guid>
    </item>
    <item>
      <author>DavidConrad</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>It was always a bit of a mistake to deprecate them. The problem is, you can't decide what's semantic in a vacuum.

If you're trying to emphasize something &amp;lt;i&amp;gt; is the wrong choice. It's presentational, not semantic. You should use &amp;lt;em&amp;gt; to indicate emphasis.

But if you're trying to italicize something because it's a book title and the Chicago Manual of Style says book titles should be set in italics, you should use &amp;lt;i&amp;gt;. That is then semantic, and &amp;lt;em&amp;gt; would be wrong, because while it &lt;em&gt;commonly&lt;/em&gt; is shown with italics, some browser or stylesheet could be set up to show emphasis with bold text, or a larger font size, or something.

You can't decide semantic vs. non-semantic without asking, what did the author &lt;em&gt;intend&lt;/em&gt;?</description>
      <pubDate>Tue, 01 Nov 2011 07:53:46 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_349201</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_349201</guid>
    </item>
    <item>
      <author>Marmite&amp;butter</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>Okay, testing:

&lt;a href="URL" rel="nofollow"&gt;http://www.nanowrimo.org&lt;/a&gt;</description>
      <pubDate>Tue, 01 Nov 2011 10:45:35 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_353092</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_353092</guid>
    </item>
    <item>
      <author>Marmite&amp;butter</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>Hey, that worked!

But still a bit stuck. If I want: 

http://maps.google.co.uk/maps?q=13+Rosslyn+Road+Twickenham&amp;amp;oe=utf-8&amp;amp;client=firefox-a&amp;amp;hnear=13+Rosslyn+Rd,+Twickenham,+Middlesex+TW1+2AR,+United+Kingdom&amp;amp;gl=uk&amp;amp;t=m&amp;amp;z=16&amp;amp;vpsrc=0

to work as a link I need to put this:

&lt;a href="URL" rel="nofollow"&gt;Clickable Text&lt;/a&gt; 

around it - the "http://etc etc" replaced "Clickable Text" so 

&lt;a href="URL" rel="nofollow"&gt;http://maps.google.co.uk/maps?q=13+Rosslyn+Road+Twickenham&amp;amp;oe=utf-8&amp;amp;client=firefox-a&amp;amp;hnear=13+Rosslyn+Rd,+Twickenham,+Middlesex+TW1+2AR,+United+Kingdom&amp;amp;gl=uk&amp;amp;t=m&amp;amp;z=16&amp;amp;vpsrc=0&lt;/a&gt; 

But where do I put the "Like so" so that that is what shows in the post rather than the big long link?

I am guessing it is replaces URL (but leaves the " "s on either side). If there is a link below saying "Like so" leading to a google map then it has worked. If it is still the great long thing or the link doesn't work, someone may like to tell me what I've done wrong.

&lt;a href="Like%20so" rel="nofollow"&gt;http://maps.google.co.uk/maps?q=13+Rosslyn+Road+Twickenham&amp;amp;oe=utf-8&amp;amp;client=firefox-a&amp;amp;hnear=13+Rosslyn+Rd,+Twickenham,+Middlesex+TW1+2AR,+United+Kingdom&amp;amp;gl=uk&amp;amp;t=m&amp;amp;z=16&amp;amp;vpsrc=0&lt;/a&gt; 

BTW The bit about replacing URL with your own text isn't obvious in the 'Quick &amp;amp; Dirty' guide so clarifying it a bit would help us web incompetents.

</description>
      <pubDate>Tue, 01 Nov 2011 11:03:09 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_353476</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_353476</guid>
    </item>
    <item>
      <author>Marmite&amp;butter</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>Nope. None of it works - the links don't go to the right place. Could anyone tell me what to do. And yes, I am really stupid, so please explain it as if to a four year old.
</description>
      <pubDate>Tue, 01 Nov 2011 11:04:25 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_353504</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_353504</guid>
    </item>
    <item>
      <author>sumerianhaze</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>
Your URL:       &lt;strong&gt;http://www.cthuugle.com&lt;/strong&gt;
Your text:         &lt;strong&gt;Ia!  Ia!  Cthulhu fhtagn!&lt;/strong&gt;

&amp;lt;a href="http://www.cthuugle.com"&amp;gt;Ia! Ia! Cthulgu fhtagn!&amp;lt;/a&amp;gt;

This will give you:

&lt;a href="http://www.cthuugle.com" rel="nofollow"&gt;Ia! Ia! Cthulgu fhtagn!&lt;/a&gt;

So, that's:  

Double quotes around your URL.
&amp;lt;a href=  before it.
&amp;gt; after it.
Then your text to display.
The closing tag &amp;lt;/a&amp;gt; at the end of your display text.</description>
      <pubDate>Tue, 01 Nov 2011 11:27:14 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_353990</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_353990</guid>
    </item>
    <item>
      <author>Deadly Ernest</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>I wish your subject heading was true. Checks of source code sees lists after list of Java Scripts not html code.

I'm having a lot of difficulty because you have so many non html calls to third parties it slows loading down to a crawl. Do you really NEED to use Google APIs so much, can't you do things with your own code and not have to use theirs?

The real annoying thing is I have to take time to turn off some security settings related to third party calls to access the site. This is going to greatly inhibit my participation and live activity on the site due to the trouble involved and time lost in doing so. What ever happened to people who designed web sites to work totally off their own server?

A security conscientious web designer should NOT use third party calls as that's how the bad guys hit people with trojans and virus downloads. Which is why security people tell you to disable third party cookies and third party code calls.

</description>
      <pubDate>Tue, 01 Nov 2011 18:56:17 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_366931</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_366931</guid>
    </item>
    <item>
      <author>Dragonchilde</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>[quote=Deadly Ernest]
I wish your subject heading was true. Checks of source code sees lists after list of Java Scripts not html code.

I'm having a lot of difficulty because you have so many non html calls to third parties it slows loading down to a crawl. Do you really NEED to use Google APIs so much, can't you do things with your own code and not have to use theirs?

The real annoying thing is I have to take time to turn off some security settings related to third party calls to access the site. This is going to greatly inhibit my participation and live activity on the site due to the trouble involved and time lost in doing so. What ever happened to people who designed web sites to work totally off their own server?

A security conscientious web designer should NOT use third party calls as that's how the bad guys hit people with trojans and virus downloads. Which is why security people tell you to disable third party cookies and third party code calls.


[/quote]

Deadly Earnest, if you would like to submit some feedback, please do so in the Suggestions forum. This thread is for the discussion of HTML as it relates to formatting on this forum, not third party API usage. </description>
      <pubDate>Tue, 01 Nov 2011 21:50:29 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_373041</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_373041</guid>
    </item>
    <item>
      <author>Deadly Ernest</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>[quote=Dragonchilde]
[quote=Deadly Ernest]
I wish your subject heading was true. Checks of source code sees lists after list of Java Scripts not html code.

I'm having a lot of difficulty because you have so many non html calls to third parties it slows loading down to a crawl. Do you really NEED to use Google APIs so much, can't you do things with your own code and not have to use theirs?

The real annoying thing is I have to take time to turn off some security settings related to third party calls to access the site. This is going to greatly inhibit my participation and live activity on the site due to the trouble involved and time lost in doing so. What ever happened to people who designed web sites to work totally off their own server?

A security conscientious web designer should NOT use third party calls as that's how the bad guys hit people with trojans and virus downloads. Which is why security people tell you to disable third party cookies and third party code calls.


[/quote]

Deadly Earnest, if you would like to submit some feedback, please do so in the Suggestions forum. This thread is for the discussion of HTML as it relates to formatting on this forum, not third party API usage. 
[/quote]

G'day Dragonchilde,

The is issue seems, to me, to be more of a site problem bug than a site change feedback item. On going to the Tech Help and Bug Report page this seemed the most appropriate thread to comment on.

However, since you assure me this belongs on the Feedback forum, I'll make the comment there.

Regards,

Ernest</description>
      <pubDate>Wed, 02 Nov 2011 02:29:43 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_380982</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_380982</guid>
    </item>
    <item>
      <author>Dragonchilde</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>[quote=Deadly Ernest]
[quote=Dragonchilde]
[quote=Deadly Ernest]
I wish your subject heading was true. Checks of source code sees lists after list of Java Scripts not html code.

I'm having a lot of difficulty because you have so many non html calls to third parties it slows loading down to a crawl. Do you really NEED to use Google APIs so much, can't you do things with your own code and not have to use theirs?

The real annoying thing is I have to take time to turn off some security settings related to third party calls to access the site. This is going to greatly inhibit my participation and live activity on the site due to the trouble involved and time lost in doing so. What ever happened to people who designed web sites to work totally off their own server?

A security conscientious web designer should NOT use third party calls as that's how the bad guys hit people with trojans and virus downloads. Which is why security people tell you to disable third party cookies and third party code calls.


[/quote]

Deadly Earnest, if you would like to submit some feedback, please do so in the Suggestions forum. This thread is for the discussion of HTML as it relates to formatting on this forum, not third party API usage. 
[/quote]

G'day Dragonchilde,

The is issue seems, to me, to be more of a site problem bug than a site change feedback item. On going to the Tech Help and Bug Report page this seemed the most appropriate thread to comment on.

However, since you assure me this belongs on the Feedback forum, I'll make the comment there.

Regards,

Ernest
[/quote]

This thread is not for general bug reports, it's specifically for the subject of the thread: HTML. If a bug report needs to be made, it needs a separate thread, not a comment on this page. Bug reports made in this thread will not be answered. </description>
      <pubDate>Wed, 02 Nov 2011 11:12:59 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_390325</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_390325</guid>
    </item>
    <item>
      <author>TANK Ex Mortis</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>Is it just me or is href broken?

I write:

[a href="www.amazon.com/Deadheart-Shelters-Forrest-Armstrong/dp/1933929049/"]The Deadheart Shelters[/a] 

(replace ['s with &amp;lt;'s), and I get a link to:

www.nanowrimo.org/en/forums/[forum name]/threads/www.amazon.com/Deadheart-Shelters-Forrest-Armstrong/dp/1933929049/.</description>
      <pubDate>Fri, 04 Nov 2011 13:14:58 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_463985</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_463985</guid>
    </item>
    <item>
      <author>Dragonchilde</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>[quote=TANK Ex Mortis]
Is it just me or is href broken?

I write:

[a href="www.amazon.com/Deadheart-Shelters-Forrest-Armstrong/dp/1933929049/"]The Deadheart Shelters[/a] 

(replace ['s with &amp;lt;'s), and I get a link to:

www.nanowrimo.org/en/forums/[forum name]/threads/www.amazon.com/Deadheart-Shelters-Forrest-Armstrong/dp/1933929049/.
[/quote]

You need to add the http:// before the www in the amazon link.  if you don't, it thinks it's a relative link, and adds the nanowrimo stuff. 

</description>
      <pubDate>Fri, 04 Nov 2011 16:50:40 -0400</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_469579</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_469579</guid>
    </item>
    <item>
      <author>TANK Ex Mortis</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>Ah, that'd explain it. Firefox has started chopping off the http in the address bar and I didn't notice.</description>
      <pubDate>Sun, 06 Nov 2011 10:57:52 -0500</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_521843</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_521843</guid>
    </item>
    <item>
      <author>theoretical_cat</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>&lt;strike&gt;test&lt;/strike&gt;

They still work, just put &amp;lt;strike&amp;gt;TEXT&amp;lt;/strike&amp;gt;</description>
      <pubDate>Fri, 11 Nov 2011 15:21:11 -0500</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_643297</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_643297</guid>
    </item>
    <item>
      <author>Anahlynn</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>&lt;strike&gt;like this?&lt;/strike&gt;</description>
      <pubDate>Wed, 30 Nov 2011 18:53:20 -0500</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_906843</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_906843</guid>
    </item>
    <item>
      <author>Bewitched.Rhapsody</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>Umm, how do I make the quotes? O__O </description>
      <pubDate>Sun, 04 Dec 2011 17:55:43 -0500</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_933438</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_933438</guid>
    </item>
    <item>
      <author>Dragonchilde</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>[quote=Bewitched.Rhapsody]
Umm, how do I make the quotes? O__O 
[/quote]

Simply click the "quote" button under the post you'd like to quote. </description>
      <pubDate>Sun, 04 Dec 2011 18:37:36 -0500</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_933665</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_933665</guid>
    </item>
    <item>
      <author>Bewitched.Rhapsody</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>Huh. That's nice to know. XD I knew that quote button was there for some reason. O__O Thanks. </description>
      <pubDate>Mon, 05 Dec 2011 13:04:07 -0500</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_937020</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_937020</guid>
    </item>
    <item>
      <author>Erecura</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>I used the &lt;a href="URL%20you%20want%20to%20link%20to" rel="nofollow"&gt;&lt;img src="Image%20URL"&gt;&lt;/a&gt; and it's huge. Huge. Any way to fix this?</description>
      <pubDate>Wed, 21 Dec 2011 15:26:39 -0500</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_991235</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_991235</guid>
    </item>
    <item>
      <author>Dragonchilde</author>
      <title>Re: Quick &amp; Dirty HTML Primer</title>
      <description>[quote=Erecura]
I used the &lt;a href="URL%20you%20want%20to%20link%20to" rel="nofollow"&gt;&lt;img src="Image%20URL"&gt;&lt;/a&gt; and it's huge. Huge. Any way to fix this?
[/quote]

If the image it large, you'll have to fix that on your end; changing it in the HTML won't change the actual size of the image. The image src tag only reproduces what shows on the host. :)</description>
      <pubDate>Wed, 21 Dec 2011 15:29:16 -0500</pubDate>
      <link>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_991243</link>
      <guid>http://www.nanowrimo.org/en/forums/tech-help-site-bug-reports/threads/609?page=1#forum_thread_comment_991243</guid>
    </item>
  </channel>
</rss>

