<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-34472787</id><updated>2011-04-21T14:58:24.762-07:00</updated><title type='text'>Crimson</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://redcrimson.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34472787/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://redcrimson.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Crimson</name><uri>http://www.blogger.com/profile/11017148058887439534</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-34472787.post-115834594463268024</id><published>2006-09-15T10:37:00.000-07:00</published><updated>2006-09-15T11:45:45.503-07:00</updated><title type='text'></title><content type='html'>&lt;div align="center"&gt;Nick names funny things.&lt;br /&gt;&lt;/div&gt;&lt;p align="center"&gt;&lt;p align="center"&gt;&lt;hr style="WIDTH: 253px; HEIGHT: 4px" size="4"&gt;&lt;p&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;br /&gt;Things you'll think will impress you mates, things that are inprinted on you, like my bro he was called chuckles because of his insane laughter, &lt;em&gt;hilarious&lt;/em&gt;. &lt;p&gt;&lt;/p&gt;&lt;p align="center"&gt;&lt;hr style="WIDTH: 575px; HEIGHT: 7px" size="7"&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;However thats not what i'm here to talk about. I'm here to talk about HTML(Hyper Text Marketing Language).&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-size:130%;"&gt;&lt;u&gt;Clean Code...&lt;br /&gt;&lt;/u&gt;&lt;/span&gt;&lt;/strong&gt;Clean code means that your HTML coding follows all specifications, I personally don't use true clean code, but very close to it. Here are a few ways to keep your code clean:&lt;br /&gt;Don't type special characters into your code, instead type their escape code... many characters should NEVER be typed directly into HTML code... for example the "&lt;", "&gt;", the "©", "&amp;", and the " itself. Instead, type &amp;amp;escape_code; (Ampersand, Escape Code for Character, then a semicolon). For these 5 characters, here are the escape codes...&lt;br /&gt;For the &lt; type &amp;lt;&lt;br /&gt;For the &gt; type &amp;gt;&lt;br /&gt;For the © type &amp;copy;&lt;br /&gt;For the &amp; type &amp;amp;amp;&lt;br /&gt;For the " type &amp;quot;&lt;br /&gt;Use quotes around values in attributes... For example, if you want a horizontal rule that is half of the screen width, type &lt;hr width="50%"&gt; rather than &lt;hr width="50%"&gt;, or if you want one that is size 5 type &lt;hr  style="font-size:180%;"&gt; rather than &lt;hr  style="font-size:180%;"&gt;. Isn't it ironic that I don't? &lt;g&gt;&lt;br /&gt;Don't overlap tags... Overlapping occurs when Tag A starts, Tag B starts, Tag A closes, then Tag B closes. This will cause errors in sensitive browsers. For Example, it will not render correctly in Navigator 4.0 Beta1, Netscape purposefully built into the browser so developers could catch errors. Examples:&lt;br /&gt;Wrong Way (Overlaps):&lt;span style="font-size:+1;"&gt;&lt;b&gt;This is Bold and One Font Size Bigger&lt;/span&gt;&lt;/b&gt;Right Way (Doesn't Overlap):&lt;span style="font-size:+1;"&gt;&lt;b&gt;This is Bold and One Font Size Bigger&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;Wrong Way (Overlaps):&lt;a href="here.html"&gt;&lt;i&gt;This link is italicized&lt;/a&gt;&lt;/i&gt;Right Way (Doesn't Overlap):&lt;a href="here.html"&gt;&lt;i&gt;This link is italicized&lt;/i&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;The page you are viewing right now is an HTML document. HTML documents look a lot like word processing documents...&lt;/p&gt;&lt;p&gt;You can have &lt;strong&gt;bold&lt;/strong&gt; and &lt;em&gt;italicized&lt;/em&gt;, &lt;span style="font-size:130%;"&gt;Larger&lt;/span&gt; and &lt;span style="font-size:85%;"&gt;Smaller&lt;/span&gt;, or it could look &lt;span style="font-family:courier new;"&gt;type-written&lt;/span&gt;.&lt;/p&gt;&lt;p&gt;Of course, the HTML code for this looks like a bunch of gibberish...&lt;/p&gt;&lt;p&gt;You can have &lt;b&gt;bold&lt;/b&gt; and &lt;i&gt;italicized&lt;/i&gt;, &lt;span style="font-size:85%;"&gt;Larger&lt;/span&gt; and &lt;span style="font-size:0;"&gt;Smaller&lt;/span&gt;, or it could look &lt;tt&gt;type-written&lt;/tt&gt;.&lt;/p&gt;&lt;p&gt;So what are all these "&lt;" and "&gt;" things doing here? &lt;/p&gt;&lt;p&gt;When you place a certain thing within these you are making something known as a tag. For example the &lt;b&gt;tag is saying to start bold text, and the &lt;/b&gt;tag is saying to stop bold text. The tag with the slash (/) is known as the closing tag. Many opening tags require a following closing tag, but not all do. Tags make up the entire structure of an HTML document. &lt;/p&gt;&lt;p&gt;E.g.&lt;&gt;&lt;b&gt;This Text is Bold&lt; / b &gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;^^^^^--Opening Tag ^^^^^--Closing Tag&lt;/p&gt;&lt;p&gt;Here are two pieces of HTML code, the second of the two has an error in it, what is it?&lt;/p&gt;&lt;p&gt;#1 - Bob jumped &lt;strong&gt;OVER&lt;/strong&gt; the fence.&lt;/p&gt;&lt;p&gt;#1 - Bob jumped &lt;&gt;&lt;b&gt;OVER&lt; / b &gt;&lt;/b&gt; the fence.&lt;/p&gt;&lt;p&gt;#2 - Bob jumped &lt;strong&gt;UNDER the&lt;/strong&gt; &lt;strong&gt;fence.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;#2 - Bob jumped &lt;&gt;&lt;b&gt;UNDER&lt; / b &gt;&lt;b&gt; the fence.&lt;/p&gt;&lt;p&gt;You should have noticed that the second code is missing a slash (/) in the tag after the word UNDER, which causes the web brows&lt;/p&gt;&lt;br /&gt;&lt;/b&gt;&lt;/b&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/34472787-115834594463268024?l=redcrimson.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://redcrimson.blogspot.com/feeds/115834594463268024/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=34472787&amp;postID=115834594463268024' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/34472787/posts/default/115834594463268024'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/34472787/posts/default/115834594463268024'/><link rel='alternate' type='text/html' href='http://redcrimson.blogspot.com/2006/09/nick-names-funny-things.html' title=''/><author><name>Crimson</name><uri>http://www.blogger.com/profile/11017148058887439534</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
