<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>xCasualty&#039;s Tutorials</title>
	<atom:link href="http://xcasualty.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://xcasualty.wordpress.com</link>
	<description>Free Online Tutorials</description>
	<lastBuildDate>Tue, 04 Aug 2009 04:08:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='xcasualty.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>xCasualty&#039;s Tutorials</title>
		<link>http://xcasualty.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://xcasualty.wordpress.com/osd.xml" title="xCasualty&#039;s Tutorials" />
	<atom:link rel='hub' href='http://xcasualty.wordpress.com/?pushpress=hub'/>
		<item>
		<title>HTML for beginners</title>
		<link>http://xcasualty.wordpress.com/2009/08/03/html-for-beginners/</link>
		<comments>http://xcasualty.wordpress.com/2009/08/03/html-for-beginners/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 04:08:32 +0000</pubDate>
		<dc:creator>xcasualty</dc:creator>
				<category><![CDATA[1]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://xcasualty.wordpress.com/?p=8</guid>
		<description><![CDATA[HTML is the language for websites. It stands for Hyper Text Markup Language and can be written to create websites just like this one. In this tutorial you will learn: &#8220;Beginner HTML Tags&#8220;, &#8220;Inserting Links &#38; Images&#8220;, and &#8220;Page Titles&#8220;. HTML can be written in many different programs, but in this tutorial we will be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xcasualty.wordpress.com&amp;blog=8858562&amp;post=8&amp;subd=xcasualty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>HTML is the language for websites. It stands for Hyper Text Markup Language and can be written to create websites just like this one.</p>
<p>In this tutorial you will learn: &#8220;<strong>Beginner HTML Tags</strong>&#8220;, &#8220;<strong>Inserting Links &amp; Images</strong>&#8220;, and &#8220;<strong>Page Titles</strong>&#8220;.</p>
<p style="text-align:center;">
<p style="text-align:left;">HTML can be written in many different programs, but in this tutorial we will be using <strong>Notepad</strong>.</p>
<p style="text-align:left;">Press, Start&#8212;&#8212;&gt; Run&#8212;&#8212;&gt; Notepad&#8212;&#8212;&gt; Then press Enter</p>
<p style="text-align:center;">
<p style="text-align:center;"><span style="text-decoration:underline;"><strong>Beginner Tags</strong></span></p>
<p style="text-align:left;">To start off the HTML code, you must type the beginning HTML tag .</p>
<blockquote>
<p style="text-align:left;">&lt;html&gt;</p>
</blockquote>
<p style="text-align:left;">This begins the HTML code so that notepad will know that you are writing an HTML page.</p>
<p style="text-align:left;">HTML is always opened with &lt;html&gt; and closed with &lt;/html&gt; so the page would look like this,</p>
<blockquote>
<p style="text-align:left;">&lt;html&gt;</p>
<p style="text-align:left;">All webage content here.</p>
<p style="text-align:left;">&lt;/html&gt;</p>
</blockquote>
<p style="text-align:left;">
<p style="text-align:left;">Now that we know how to open and close an HTML page, lets learn how to insert <strong>Links &amp; Images.</strong></p>
<p style="text-align:center;"><strong><span style="text-decoration:underline;">Links &amp; Images</span></strong></p>
<p style="text-align:left;">Inside of the opening and closing tags, you can insert many objects such as <strong>Links &amp; Images </strong>to insert a link, you will need to learn the Link code. Which is,</p>
<blockquote>
<p style="text-align:left;">&lt;html&gt;</p>
<p style="text-align:left;">&lt;a href=&#8221;http://www.WebsiteHere.com&#8221;&gt;What your link will say here.&lt;/a&gt;</p>
<p style="text-align:left;">&lt;/html&gt;</p>
</blockquote>
<p style="text-align:left;">This will post a link on your page such as this one, <a href="http://www.xcasualty.wordpress.com">Link! =D</a></p>
<p style="text-align:left;">You can also make these links open on a new window using this code:</p>
<blockquote>
<p style="text-align:left;">&lt;html&gt;</p>
<p style="text-align:left;">&lt;a href=&#8221;http://www.WebsiteHere.com&#8221; target=&#8221;_blank&#8221;&gt;What your link will say here.&lt;/a&gt;</p>
<p style="text-align:left;">&lt;/html&gt;</p>
</blockquote>
<p style="text-align:left;">Now the link will open in a new window so that the user may remain on both pages. <a href="http://www.xcasualty.wordpress.com" target="_blank">Link! =D</a></p>
<p style="text-align:left;">
<p style="text-align:left;">Now that we understand Links, we can learn how to insert Images on to our webpage.</p>
<p style="text-align:left;">To insert an image, you must first have one uploaded to a website or find one. This is called the image &#8220;source&#8221;.</p>
<p style="text-align:left;">This image code looks like this:</p>
<blockquote>
<p style="text-align:left;">&lt;html&gt;</p>
<p style="text-align:left;">&lt;img src=&#8221;http://www.Website.com/image.jpg&#8221;&gt;</p>
<p style="text-align:left;">&lt;/html&gt;</p>
</blockquote>
<p style="text-align:left;">This will post the image such as this one: <img src="http://www.psychologytoday.com/files/u40/funny-cat.jpg" alt="" /></p>
<p style="text-align:left;">
<p style="text-align:left;">You can also make pictures with both codes combined:</p>
<blockquote>
<p style="text-align:left;">&lt;html&gt;</p>
<p style="text-align:left;">&lt;a href=&#8221;http://www.WebsiteHere.com&#8221;&gt;&lt;img src=&#8221;http://www.Website.com/image.jpg&#8221;&gt;&lt;/a&gt;</p>
<p style="text-align:left;">&lt;/html&gt;</p>
</blockquote>
<p>That code will result in this:</p>
<p><a href="http://www.xcasualty.wordpress.com"><img src="http://www.psychologytoday.com/files/u40/funny-cat.jpg" alt="" /></a></p>
<p>When inserting images, you can also resize them with this code:</p>
<blockquote><p>&lt;html&gt;</p>
<p>&lt;img src=&#8221;http://www.Website.com/image.jpg&#8221; width=&#8221;100&#8243; height=&#8221;100&#8243;&gt;</p>
<p>&lt;/html&gt;</p></blockquote>
<p>The previous code will resize your image to your needs such as this one:<br />
<img src="http://www.psychologytoday.com/files/u40/funny-cat.jpg" alt="" width="100" height="100" /></p>
<p>Of course you can always add links into the image and make it open on a new page. So here is the code that would do all of what you have learned combined:</p>
<blockquote><p>&lt;html&gt;</p>
<p>&lt;a href=&#8221;http://www.WebsiteHere.com&#8221;&gt;&lt;img scr=&#8221;http://www.Website.com/image.jpg&#8221; width=&#8221;100&#8243; height=&#8221;100&#8243;&gt;&lt;/a&gt;</p>
<p>&lt;/html&gt;</p></blockquote>
<p>Now for the final tutorial, Page titles.</p>
<p style="text-align:center;"><strong><span style="text-decoration:underline;">Page Titles</span></strong></p>
<p style="text-align:left;">The &#8220;Page Title&#8221; will apear at the top of your page so that the user on the page will know what the page consists of or what page they&#8217;re on.</p>
<p style="text-align:left;">Here&#8217;s the code:</p>
<blockquote>
<p style="text-align:left;">&lt;html&gt;</p>
<p style="text-align:left;">&lt;title&gt;Page Title Here&lt;/title&gt;</p>
<p style="text-align:left;">&lt;/html&gt;</p>
</blockquote>
<p style="text-align:left;">
<p style="text-align:left;">This is a very, very simple code to remember and very helpful for your webpage veiwers as well.</p>
<p style="text-align:left;">
<p style="text-align:left;">So to put all of this together, your code would be:</p>
<blockquote>
<p style="text-align:left;">&lt;html&gt;</p>
<p style="text-align:left;">&lt;title&gt;Page Title Here&lt;/title&gt;</p>
<p style="text-align:left;">&lt;a href=&#8221;http://www.Website.com&#8221; target=&#8221;_blank&#8221;&gt;Link! =D&lt;/a&gt;</p>
<p style="text-align:left;">&lt;a href=&#8221;http://www.Website.com&#8221; target=&#8221;_blank&#8221;&gt;&lt;img src=&#8221;http://www.Website.com/image.jpg&#8221; width=&#8221;100&#8243; height=&#8221;100&#8243;&gt;&lt;/a&gt;</p>
<p style="text-align:left;">&lt;/html&gt;</p>
</blockquote>
<p style="text-align:left;">
<p style="text-align:left;">That&#8217;s it for the beginner HTML tutorial. Please check back soon for more easy and fun tutorials!</p>
<p style="text-align:left;">
<p style="text-align:left;">-<span style="color:#00ffff;">xCasualty</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xcasualty.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xcasualty.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xcasualty.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xcasualty.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xcasualty.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xcasualty.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xcasualty.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xcasualty.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xcasualty.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xcasualty.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xcasualty.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xcasualty.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xcasualty.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xcasualty.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xcasualty.wordpress.com&amp;blog=8858562&amp;post=8&amp;subd=xcasualty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xcasualty.wordpress.com/2009/08/03/html-for-beginners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/05e7cad702f5ced69e2aaa51def7669f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">xcasualty</media:title>
		</media:content>

		<media:content url="http://www.psychologytoday.com/files/u40/funny-cat.jpg" medium="image" />

		<media:content url="http://www.psychologytoday.com/files/u40/funny-cat.jpg" medium="image" />

		<media:content url="http://www.psychologytoday.com/files/u40/funny-cat.jpg" medium="image" />
	</item>
		<item>
		<title>Welcome!</title>
		<link>http://xcasualty.wordpress.com/2009/08/03/welcome/</link>
		<comments>http://xcasualty.wordpress.com/2009/08/03/welcome/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 02:14:40 +0000</pubDate>
		<dc:creator>xcasualty</dc:creator>
				<category><![CDATA[Welcome!]]></category>

		<guid isPermaLink="false">http://xcasualty.wordpress.com/?p=5</guid>
		<description><![CDATA[Welcome to my site. I will be posting a new tutorial on here everyday! Please feel free to comment on these tutorials and ask questions. -xCasualty<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xcasualty.wordpress.com&amp;blog=8858562&amp;post=5&amp;subd=xcasualty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to my site. I will be posting a new tutorial on here <em>everyday</em>! Please feel free to comment on these tutorials and ask questions.</p>
<p>-xCasualty</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xcasualty.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xcasualty.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xcasualty.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xcasualty.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xcasualty.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xcasualty.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xcasualty.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xcasualty.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xcasualty.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xcasualty.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xcasualty.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xcasualty.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xcasualty.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xcasualty.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xcasualty.wordpress.com&amp;blog=8858562&amp;post=5&amp;subd=xcasualty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xcasualty.wordpress.com/2009/08/03/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/05e7cad702f5ced69e2aaa51def7669f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">xcasualty</media:title>
		</media:content>
	</item>
	</channel>
</rss>
