<?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>Web Design</title>
	<atom:link href="http://websiteclass.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://websiteclass.wordpress.com</link>
	<description>Oli Blanton</description>
	<lastBuildDate>Mon, 29 Nov 2010 18:29:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='websiteclass.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/997e0ac8681411d5a9e47f0fa3ad9124?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Web Design</title>
		<link>http://websiteclass.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://websiteclass.wordpress.com/osd.xml" title="Web Design" />
	<atom:link rel='hub' href='http://websiteclass.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Lesson 1: Intro to HTML</title>
		<link>http://websiteclass.wordpress.com/2010/11/26/html-tags-elements/</link>
		<comments>http://websiteclass.wordpress.com/2010/11/26/html-tags-elements/#comments</comments>
		<pubDate>Fri, 26 Nov 2010 02:11:55 +0000</pubDate>
		<dc:creator>Oliblanton</dc:creator>
				<category><![CDATA[Lessons]]></category>

		<guid isPermaLink="false">http://websiteclass.wordpress.com/?p=47</guid>
		<description><![CDATA[What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup language A markup language is a set of markup tags HTML uses markup tags to describe web pages HTML Tags HTML markup tags are usually called HTML tags HTML tags are keywords surrounded by angle [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=websiteclass.wordpress.com&amp;blog=7853156&amp;post=47&amp;subd=websiteclass&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>What is HTML?</h2>
<p>HTML is a language for describing web pages.</p>
<ul>
<li>HTML stands for <strong>H</strong>yper <strong>T</strong>ext <strong>M</strong>arkup <strong>L</strong>anguage</li>
<li>HTML is not a programming language, it is a <strong>markup language</strong></li>
<li>A markup language is a set of <strong>markup tags</strong></li>
<li>HTML uses <strong>markup tags</strong> to describe web pages</li>
</ul>
<hr />
<h2>HTML Tags</h2>
<p>HTML markup tags are usually called HTML tags</p>
<ul>
<li>HTML tags are keywords surrounded by <strong>angle brackets </strong>like &lt;html&gt;</li>
<li>HTML tags normally <strong>come in pairs</strong> like &lt;b&gt; and &lt;/b&gt;</li>
<li>The first tag in a pair is the <strong>start tag,</strong> the second tag is the <strong>end tag</strong></li>
<li>Start and end tags are also called <strong>opening tags</strong> and <strong>closing tags</strong></li>
</ul>
<hr />
<h2>HTML Documents = Web Pages</h2>
<ul>
<li>HTML documents <strong>describe web pages</strong></li>
<li>HTML documents <strong>contain HTML tags</strong> and plain text</li>
<li>HTML documents are also <strong>called web pages</strong></li>
</ul>
<p>The purpose of a web browser (like Internet Explorer or Firefox) is to read HTML documents and display them as web pages. The browser does not display the HTML tags, but uses the tags to interpret the content of the page:</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>&lt;html&gt;<br />
&lt;body&gt;&lt;h1&gt;My First Heading&lt;/h1&gt;&lt;p&gt;My first paragraph.&lt;/p&gt;&nbsp;</p>
<p>&lt;/body&gt;<br />
&lt;/html&gt;</td>
</tr>
</tbody>
</table>
<h2>Example Explained</h2>
<ul>
<li>The text between &lt;html&gt; and &lt;/html&gt; describes the web page</li>
<li>The text between &lt;body&gt; and &lt;/body&gt; is the visible page content</li>
<li>The text between &lt;h1&gt; and &lt;/h1&gt; is displayed as a heading</li>
<li>The text between &lt;p&gt; and &lt;/p&gt; is displayed as a paragraph</li>
</ul>
<h2>HTML Headings</h2>
<p>HTML headings are defined with the &lt;h1&gt; to &lt;h6&gt; tags.</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>&lt;h1&gt;This is a heading&lt;/h1&gt;<br />
&lt;h2&gt;This is a heading&lt;/h2&gt;<br />
&lt;h3&gt;This is a heading&lt;/h3&gt;</td>
</tr>
</tbody>
</table>
<h2>HTML Paragraphs</h2>
<p>HTML paragraphs are defined with the &lt;p&gt; tag.</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>&lt;p&gt;This is a paragraph.&lt;/p&gt;<br />
&lt;p&gt;This is another paragraph.&lt;/p&gt;</td>
</tr>
</tbody>
</table>
<h2>HTML Links</h2>
<p>HTML links are defined with the &lt;a&gt; tag.</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>&lt;a href=&#8221;http://www.w3schools.com&#8221;&gt;This is a link&lt;/a&gt;</td>
</tr>
</tbody>
</table>
<h2>HTML Images</h2>
<p>HTML images are defined with the &lt;img&gt; tag.</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>&lt;img src=&#8221;w3schools.jpg&#8221; width=&#8221;104&#8243; height=&#8221;142&#8243; /&gt;</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/websiteclass.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/websiteclass.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/websiteclass.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/websiteclass.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/websiteclass.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/websiteclass.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/websiteclass.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/websiteclass.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/websiteclass.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/websiteclass.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/websiteclass.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/websiteclass.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/websiteclass.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/websiteclass.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=websiteclass.wordpress.com&amp;blog=7853156&amp;post=47&amp;subd=websiteclass&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://websiteclass.wordpress.com/2010/11/26/html-tags-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/79e44fedfd6748e59e9248db83b4c4ad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">oliblanton</media:title>
		</media:content>
	</item>
		<item>
		<title>Lesson 1: Intro to Web Design</title>
		<link>http://websiteclass.wordpress.com/2010/11/14/lesson-1-intro-to-web-design/</link>
		<comments>http://websiteclass.wordpress.com/2010/11/14/lesson-1-intro-to-web-design/#comments</comments>
		<pubDate>Sun, 14 Nov 2010 21:44:54 +0000</pubDate>
		<dc:creator>Oliblanton</dc:creator>
				<category><![CDATA[Lessons]]></category>

		<guid isPermaLink="false">http://websiteclass.wordpress.com/?p=126</guid>
		<description><![CDATA[What is HTML? At the heart of web page design is a computer language called &#8220;HTML&#8221;. Although many new languages and technologies are superseding HTML, it still forms the foundation of virtually all websites. A web page is an &#8220;HTML Document&#8221;. This is a file format which usually uses the extension &#8220;.html&#8221; or &#8220;.htm&#8220;. For [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=websiteclass.wordpress.com&amp;blog=7853156&amp;post=126&amp;subd=websiteclass&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<p><strong>What is HTML?</strong></p>
<p>At the heart of web page design is a computer language called &#8220;HTML&#8221;. Although many new languages and technologies are superseding HTML, it still forms the foundation of virtually all websites.</p>
<p>A web page is an &#8220;HTML Document&#8221;. This is a file format which usually uses the extension &#8220;<strong>.html</strong>&#8221; or &#8220;<strong>.htm</strong>&#8220;. For example, if you use Microsoft Word, you will usually save your files with the extension &#8220;.doc&#8221;. However you can also save your files with many other extensions such as &#8220;.txt&#8221;, &#8220;.wps&#8221; etc. Amongst the options is &#8220;<strong>.html</strong>&#8220;.</p>
<p>HTML documents are actually just plain text, but contain snippets of code which carry vital information about how the page should be displayed. You can create such a document using any text editor &#8211; even a very simple one like Windows Notepad. In fact many web designers prefer to use simple text editors.</p>
<p>This is what a very simple HTML document looks like:</p>
<p>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;A Simple Web Page&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
This is about as simple as a web page can get.<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>To view an HTML document, you must use a browser. The browser opens the HTML document in the background and &#8220;decodes&#8221; it before showing it to you. What you see is your browser&#8217;s interpretation of how the web page should look (note: this is actually an important point &#8211; it&#8217;s why you should test your site using a variety of browsers).</p>
<p><strong>WYSIWYG Editors</strong></p>
<p>WYSIWYG means &#8220;What You See Is What You Get&#8221;. WYSIWYG web-page editors are similar to word processors and they allow you to construct a web page without using HTML instructions. You simply type in your text, add pictures, etc, using familiar toolbars and menus. The editor makes the HTML code in the background.</p>
<p>Some well-known WYSIWYG web-page editors:<a href="http://websiteclass.files.wordpress.com/2010/09/adobedreamweavercs4fullversion.jpg"><img class="alignright size-full wp-image-130" title="AdobeDreamweaverCS4FullVersion" src="http://websiteclass.files.wordpress.com/2010/09/adobedreamweavercs4fullversion.jpg?w=480" alt=""   /></a></p>
<ul>
<li><strong>Adobe Dreamweaver</strong></li>
<li>Microsoft FrontPage</li>
<li>Microsoft Publisher</li>
</ul>
<p>The image on the right is Dreamweaver. Using the tools provided, you can add text, images and other elements directly onto the page.</p>
<p>These editors have obvious advantages such as speed and ease of use. However, there is a trade-off: They are not 100% reliable. If you examine the HTML code, you are likely to find mistakes and unwanted extra code. They also tend to be deceptive &#8211; you may think you&#8217;re producing a fantastic page but find that it looks very different once you publish it. Remember that these editors usually use an <em>approximation</em> of how the page will look. To see your page as it really is you need to view it in a browser.</p>
<p>For these reasons, some professional web designers refuse to use WYSIWYG editors. Instead, they use simple text editors and compose all the HTML manually. However, it&#8217;s becoming more common to use a mixture of both methods. A good WYSIWYG editor will give you the option to edit the HTML code manually. At the bottom of the Dreamweaver screenshot there is a panel which shows the HTML code for the page being worked on. As you edit the page in WYSIWYG mode, the HTML automatically updates. Likewise, you can edit the HTML code and the WYSIWYG view will be updated.</p>
<p><strong>Hosting</strong></p>
<p>Once you&#8217;ve created your web site and you can see that it works properly on your computer, you need to &#8220;publish&#8221; it to the internet so that other people can see it. Essentially you just need to copy the web pages from your computer to your host server.</p>
<p>Naturally, the first thing you&#8217;ll need to do is to find a host server. There are many options available and finding the right solution isn&#8217;t always easy. There are two main categories of hosting options: <em>Free</em> and <em>Paid</em>.</p>
<p><strong>Publish</strong></p>
<p>The final stage of construction is the upload. Using a file transfer program, you copy the entire website structure to the appropriate folder on the host server.  Some site authoring applications have the option to publish directly to the web. This may be largely automated, such as the &#8220;Synchronise&#8221; command in Dreamweaver. These commands can identify files which have been modified since you last published and tell you which ones need to be updated. If you have a large site, this can be a huge time-saver.</p>
<p><a href="http://www.w3schools.com/HTML/tryit.asp?filename=tryhtml_intro" target="_blank">HTML generator</a></p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/websiteclass.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/websiteclass.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/websiteclass.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/websiteclass.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/websiteclass.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/websiteclass.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/websiteclass.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/websiteclass.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/websiteclass.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/websiteclass.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/websiteclass.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/websiteclass.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/websiteclass.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/websiteclass.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=websiteclass.wordpress.com&amp;blog=7853156&amp;post=126&amp;subd=websiteclass&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://websiteclass.wordpress.com/2010/11/14/lesson-1-intro-to-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/79e44fedfd6748e59e9248db83b4c4ad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">oliblanton</media:title>
		</media:content>

		<media:content url="http://websiteclass.files.wordpress.com/2010/09/adobedreamweavercs4fullversion.jpg" medium="image">
			<media:title type="html">AdobeDreamweaverCS4FullVersion</media:title>
		</media:content>
	</item>
	</channel>
</rss>
