<?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/"
	>

<channel>
	<title>M5 Design Studio</title>
	<atom:link href="http://m5designstudio.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://m5designstudio.com</link>
	<description>Beautiful &#38; Functional Contemporary Web and Graphic Design</description>
	<lastBuildDate>Tue, 23 Apr 2013 18:52:45 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Bootstrap&#8217;s Responsive Layout</title>
		<link>http://m5designstudio.com/2013/orlando-web-design/bootstrap-responsive-layout/</link>
		<comments>http://m5designstudio.com/2013/orlando-web-design/bootstrap-responsive-layout/#comments</comments>
		<pubDate>Thu, 18 Apr 2013 02:00:15 +0000</pubDate>
		<dc:creator>M5 Design Studio</dc:creator>
				<category><![CDATA[orlando web design]]></category>
		<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[responsive web design]]></category>

		<guid isPermaLink="false">http://m5designstudio.com/?p=3367</guid>
		<description><![CDATA[What is responsive web design? Responsive web design responds to the user’s behavior and environment based on screen size, platform and orientation. It consists of a mix of fluid grids and layouts, responsive images and CSS media queries. 1. Turning &#8230; <a href="http://m5designstudio.com/2013/orlando-web-design/bootstrap-responsive-layout/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-3373" alt="bootstrap responsive layout" src="http://m5designstudio.com/wp-content/uploads/2013/04/bootstrap_responsive_layout.png" width="580" height="243" /></p>
<h2>What is responsive web design?</h2>
<p>Responsive web design responds to the user’s behavior and environment based on screen size, platform and orientation. It consists of a mix of fluid grids and layouts, responsive images and CSS media queries.<span id="more-3367"></span></p>
<h2>1. Turning On Responsive Features</h2>
<p>1. Download <a href="http://twitter.github.io/bootstrap/customize.html" target="_blank">bootstrap-responsive.css</a></p>
<p>2. Include the code below within the <code>&lt;head&gt; of the document:</code></p>
<pre>&lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&gt;
&lt;link href="css/bootstrap-responsive.css" rel="stylesheet"&gt;</pre>
<p>The first line of code is the viewport metatag. In mobile devices it makes the browser use the real size of the device. This way a device with a width of 320px will not display a website like a device with a width of 1280px.</p>
<p><img class="aligncenter size-full wp-image-3427" alt="responsive design viewport metatag" src="http://m5designstudio.com/wp-content/uploads/2013/04/responsive_design_viewport_metatag.jpg" width="580" height="463" /></p>
<p>The second line of code is a link to bootstrap-responsive.css.</p>
<hr />
<h2>2. Understanding Bootstrap&#8217;s Grid</h2>
<p>The default Bootstrap grid system utilizes 12 columns, making for a 940px wide container without responsive features enabled. With the responsive CSS file added, the grid adapts to be 724px and 1170px wide depending on your viewport. Below 767px viewports, the columns become fluid and stack vertically.</p>
<p>On the graphic below you can see that a fluid grid use percents instead of pixels for column widths. In a fluid grid, the addition of all the columns widths and the gutter should be 100%.</p>
<p><img class="aligncenter size-full wp-image-3374" alt="bootstrap grid" src="http://m5designstudio.com/wp-content/uploads/2013/04/bootstrap_grid.png" width="579" height="716" /></p>
<h2>Adding a Container, Rows and Columns</h2>
<p>To create a layout like this:</p>
<p><img class="aligncenter size-full wp-image-3431" alt="simple bootstrap grid" src="http://m5designstudio.com/wp-content/uploads/2013/04/bootstrap_grid.jpg" width="580" height="234" /></p>
<p>You must add the following tags and classes:</p>
<p><img class="aligncenter size-full wp-image-3430" alt="bootstrap grid and columns" src="http://m5designstudio.com/wp-content/uploads/2013/04/bootstrap_grid_and_columns.jpg" width="580" height="537" /></p>
<pre>&lt;div class="container"&gt;
    &lt;div class="row"&gt;
        &lt;div class="span12"&gt; 
            
             Welcome Text
   
            &lt;div class="row"&gt;
                  &lt;div class="span4"&gt; Column One&lt;/div&gt;
                  &lt;div class="span4"&gt; Column One&lt;/div&gt;
                  &lt;div class="span4"&gt; Column One&lt;/div&gt;
             &lt;/div&gt;

        &lt;/div&gt;&lt;!-- Span 12 ends --&gt;
    &lt;/div&gt;&lt;!-- Row Ends --&gt;
&lt;/div&gt;&lt;!-- Container Ends --&gt;</pre>
<hr />
<h2>3. Bootstrap&#8217;s Media Queries</h2>
<p>Media queries allow for custom CSS based on a number of conditions (ratios, widths, display type, etc) but usually focuses around <strong>min-width</strong> and <strong>max-width</strong>.</p>
<p>Without media queries, fluid layouts would struggle to adapt to the array of screen sizes on the hundreds of existing devices.</p>
<p>Bootstrap&#8217;s Media Queries:</p>
<ul>
<li>Modify the width of column in our grid</li>
<li>Stack elements instead of float wherever necessary</li>
<li>Resize headings and text to be more appropriate for devices</li>
</ul>
<hr />
<h2>Supported devices</h2>
<p><img class="aligncenter size-full wp-image-3383" alt="bootstrap-supported-devices" src="http://m5designstudio.com/wp-content/uploads/2013/04/bootstrap-supported-devices.png" width="580" height="257" /></p>
<h3>CSS3 Media Queries:</h3>
<pre> /* Large desktop */
@media (min-width: 1200px) { ... }

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) { ... }

/* Landscape phone to portrait tablet */
@media (max-width: 767px) { ... }

/* Landscape phones and down */
 @media (max-width: 480px) { ... }</pre>
<h3>Example:</h3>
<p>To change the background color of a website to red only on devices with a max-width of 767px use the code:</p>
<p><img class="aligncenter size-full wp-image-3416" alt="media queries styles" src="http://m5designstudio.com/wp-content/uploads/2013/04/media-queries-styles.png" width="580" height="279" /></p>
<p>Note how 2 sets of curly braces are necessary (maroon and pink). When working with media queries extra caution is necessary to properly close the curly braces of the queries and of the styles.</p>
<h3>IE 8 and below do not support CSS3 media queries:</h3>
<p>For IE 8 and below that do not support media queries and/or HTML5 use the code below in between the &lt;head&gt; tags:</p>
<pre>&lt;!-- html5.js &amp; media-queries.js (fallback) --&gt; 
&lt;!--[if lt IE 9]&gt; 
&lt;script src="http://html5shim.googlecode.com/svn/trunk/html5.js"&gt;&lt;/script&gt; 
&lt;script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"&gt;&lt;/script&gt; 
&lt;![endif]--&gt;</pre>
<p><strong><a href="http://code.google.com/p/css3-mediaqueries-js/">a. CSS3-MediaQueries-js</a></strong></p>
<p>A JavaScript library that supports the full range of media queries introduced in CSS3.</p>
<p><strong><a href="https://github.com/scottjehl/Respond" target="_blank">b. Respond.js</a></strong></p>
<p>A fast &amp; lightweight (only 3kb minified) polyfill for min/max-width CSS3 Media Queries (for IE 6-8, and more).</p>
<hr />
<h2>4. Flexible images</h2>
<p>In responsive web design you can make the image auto resize to the max width of the boundary by using max-width:100% and height:auto.</p>
<pre><code>img {
	max-width: 100%;
	height: auto;
    }</code></pre>
<p>Bootstrap will automatically  resize an image if  it is wrapped within a  &lt;div&gt; tag  with a class &#8220;span1&#8243; through &#8220;span12&#8243;.</p>
<p><strong>Image without a span wrap, just floated left in a viewport of 800px. It doesn&#8217;t resize:<br />
</strong></p>
<p><img class="aligncenter size-full wp-image-3395" alt="resize images in bootstrap" src="http://m5designstudio.com/wp-content/uploads/2013/04/resize-images-bootstrap.png" width="580" height="200" /></p>
<pre>&lt;div class="span12"&gt;
&lt;img src="images/320.png" class="pull-left"/&gt;
Cras justo odio, dapibus ac facilisis in, egestas eget quam. 
&lt;/div&gt;</pre>
<p><strong>Image wrapped in a &#8220;span3&#8243; and text wrapped in a &#8220;span9&#8243; in a viewport of 800px. It resizes:<br />
</strong></p>
<p><img class="aligncenter size-full wp-image-3396" alt="resize images bootstrap" src="http://m5designstudio.com/wp-content/uploads/2013/04/resize-images-bootstrap2.jpg" width="580" height="164" /></p>
<pre>&lt;div class="span3"&gt;
&lt;img src="images/320.png"/&gt;
&lt;/div&gt;
&lt;div class="span9"&gt;
Cras justo odio, dapibus ac facilisis in, egestas eget quam. 
&lt;/div&gt;</pre>
<h3>Using custom classes to resize images in Bootsrap:</h3>
<p>If you need the text to wrap the image but the image to be responsive you can use custom classes.</p>
<p><strong>Image without a span wrap, floated left and with a custom class in a viewport of 800px. It resizes:<br />
</strong></p>
<p><img class="aligncenter size-full wp-image-3397" alt="resize-image bootstrap custom class" src="http://m5designstudio.com/wp-content/uploads/2013/04/resize-image-bootstrap-custom-class.png" width="580" height="239" /></p>
<pre>&lt;div class="span12"&gt;
&lt;img src="images/portfolio/320.png" class="pull-left myclass"/&gt;
Cras justo odio, dapibus ac facilisis in, egestas eget quam. 
&lt;/div&gt;</pre>
<p>Then set the width of the image in percents</p>
<pre>.myclass {
    width:20%
}</pre>
<hr />
<h2>5. Responsive Classes</h2>
<p>Bootstrap comes with 6 ready-to-use classes to show and hide elements in desktop, tablets and phones:</p>
<table class="table table-bordered table-striped responsive-utilities">
<thead>
<tr>
<th>Class</th>
<th>Phones <small>767px and below</small></th>
<th>Tablets <small>979px to 768px</small></th>
<th>Desktops <small>Default</small></th>
</tr>
</thead>
<tbody>
<tr>
<th><code>.visible-phone</code></th>
<td class="is-visible">Visible</td>
<td class="is-hidden">Hidden</td>
<td class="is-hidden">Hidden</td>
</tr>
<tr>
<th><code>.visible-tablet</code></th>
<td class="is-hidden">Hidden</td>
<td class="is-visible">Visible</td>
<td class="is-hidden">Hidden</td>
</tr>
<tr>
<th><code>.visible-desktop</code></th>
<td class="is-hidden">Hidden</td>
<td class="is-hidden">Hidden</td>
<td class="is-visible">Visible</td>
</tr>
<tr>
<th><code>.hidden-phone</code></th>
<td class="is-hidden">Hidden</td>
<td class="is-visible">Visible</td>
<td class="is-visible">Visible</td>
</tr>
<tr>
<th><code>.hidden-tablet</code></th>
<td class="is-visible">Visible</td>
<td class="is-hidden">Hidden</td>
<td class="is-visible">Visible</td>
</tr>
<tr>
<th><code>.hidden-desktop</code></th>
<td class="is-visible">Visible</td>
<td class="is-visible">Visible</td>
<td class="is-hidden">Hidden</td>
</tr>
</tbody>
</table>
<hr />
<h2>6. Relative Margins and Padding</h2>
<p>If you need to add margins or padding to any element in responsive web design do not use a fixed pixel value, use percents instead.</p>
<p><img class="aligncenter size-full wp-image-3412" alt="bootstrap margins" src="http://m5designstudio.com/wp-content/uploads/2013/04/bootstrap-margins.png" width="580" height="192" /></p>
<pre>&lt;div class="span12"&gt;
&lt;img src="images/portfolio/320.png" class="pull-left myclass"/&gt;
Cras justo odio, dapibus ac facilisis in, egestas eget quam. 
&lt;/div&gt;</pre>
<pre>.myclass {
    width:30%;
    margin: 0 2% 2% 2%;   
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://m5designstudio.com/2013/orlando-web-design/bootstrap-responsive-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing Bootstrap</title>
		<link>http://m5designstudio.com/2013/orlando-web-design/customizing-bootstrap/</link>
		<comments>http://m5designstudio.com/2013/orlando-web-design/customizing-bootstrap/#comments</comments>
		<pubDate>Tue, 02 Apr 2013 17:32:39 +0000</pubDate>
		<dc:creator>M5 Design Studio</dc:creator>
				<category><![CDATA[orlando web design]]></category>
		<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://m5designstudio.com/?p=3346</guid>
		<description><![CDATA[Orlando Web Design &#38; Development Twitter&#8217;s Bootsrap is a powerful front-end framework for faster and easier web development. You can customize Bootsrap&#8217;s CSS the following ways: 1. Customize before downloading: Go to the Official Bootstrap Website and add your own &#8230; <a href="http://m5designstudio.com/2013/orlando-web-design/customizing-bootstrap/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-3358" alt="orlando web deisgn bootstrap" src="http://m5designstudio.com/wp-content/uploads/2013/04/orlando-web-deisgn-bootstrap.png" width="580" height="243" /></p>
<h2>Orlando Web Design &amp; Development</h2>
<p>Twitter&#8217;s Bootsrap is a powerful front-end framework for faster and easier web development.<span id="more-3346"></span></p>
<p>You can customize Bootsrap&#8217;s CSS the following ways:</p>
<h2>1. Customize before downloading:</h2>
<p><img class="aligncenter size-full wp-image-3349" alt="Orlando web design: customize bootstrap" src="http://m5designstudio.com/wp-content/uploads/2013/04/customize-bootstrap.png" width="580" height="359" /></p>
<p>Go to the <a href="http://twitter.github.com/bootstrap/customize.html#variables" target="_blank">Official Bootstrap Website</a> and add your own custom CSS before downloading the Bootstrap files.</p>
<hr />
<h2>2. Add your own CSS:</h2>
<p>Create your own CSS document and place it below the Bootsrap CSS file in the &lt;head&gt;of the HTML document.</p>
<pre>&lt;!-- Bootstrap's CSS --&gt;
&lt;link href="css/bootstrap.min.css" rel="stylesheet" media="screen"&gt;
&lt;!-- Your CSS --&gt;
&lt;link href="css/mystyles.css" rel="stylesheet" media="screen"&gt;</pre>
<p>The last declared styles are the heaviest and they override any styles declared before.</p>
<h3>a. Example one: Modify Existing Styles</h3>
<p><img class="aligncenter size-full wp-image-3350" alt="Orlando web design: modified bootstrap button" src="http://m5designstudio.com/wp-content/uploads/2013/04/modified-bootstrap-button.png" width="580" height="387" /></p>
<p>To create a button in Bootstrap you will use the code:</p>
<pre>     &lt;a href="contact.html" class="btn"&gt; This is a button&lt;/a&gt;</pre>
<p>or</p>
<pre>&lt;button href="contact.html" class="btn btn-large"&gt;This is a button&lt;/button&gt;</pre>
<p>Bootstrap buttons have a round corners. These are the styles that give the buttons the round corners:</p>
<pre>.btn {
     -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
      border-radius: 4px;
}</pre>
<p>In your CSS file &#8220;mystyles.css&#8221;, you can override the round corners by adding the code:</p>
<pre>.btn {
     -webkit-border-radius: 0px;
     -moz-border-radius: 0px;
      border-radius: 0px;
}</pre>
<h3>b. Example Two: Add New Styles</h3>
<p><img class="aligncenter size-full wp-image-3351" alt="Orlando web design: custom bootstrap class" src="http://m5designstudio.com/wp-content/uploads/2013/04/custom-bootstrap-class.png" width="580" height="387" /></p>
<p>You can create new styles to customize the way your website looks. For example, if you want to create a custom contact button, follow these steps:</p>
<p>1. Create a new class in the CSS file &#8220;mystyles.css&#8221;:</p>
<pre>.contactB{
      -webkit-border-radius: 25px;
      -moz-border-radius: 25px;
      border-radius: 25px;
      background-image:none;
      background-color:hotpink;
}</pre>
<p>2. Add the new class to the html</p>
<pre>&lt;a href="contact.html" class="btn contactB"&gt; This is a contact button&lt;/a&gt;</pre>
<p>The great thing about having your custom styles in a separated CSS document is that it will make upgrading Bootstrap a breeze since your new styles will not get overridden when you replace the old Bootsrap files with the new.</p>
<h2>3. Bootstrap Third Party Generators</h2>
<p><strong>Styling Generators:</strong></p>
<ul>
<li><a href="http://pikock.github.com/bootstrap-magic/index.html" target="_blank">http://pikock.github.com/bootstrap-magic/index.html</a></li>
<li><a href="http://stylebootstrap.info/" target="_blank">http://stylebootstrap.info/</a></li>
<li><a href="http://decioferreira.github.com/bootstrap-generators/" target="_blank">http://decioferreira.github.com/bootstrap-generators/</a></li>
</ul>
<p><strong>Buttons Generators:</strong></p>
<ul>
<li><a href="http://charliepark.org/bootstrap_buttons/" target="_blank">http://charliepark.org/bootstrap_buttons/</a></li>
<li><a href="http://blog.koalite.com/bbg/" target="_blank">http://blog.koalite.com/bbg/</a></li>
</ul>
<p><strong>Color Generators:</strong></p>
<ul>
<li><a href="http://www.lavishbootstrap.com/" target="_blank">http://www.lavishbootstrap.com/</a></li>
<li><a href="http://paintstrap.com/" target="_blank">http://paintstrap.com/</a></li>
</ul>
<p><strong>Theme Generators:</strong></p>
<ul>
<li><a href="http://www.boottheme.com/" target="_blank">http://www.boottheme.com/</a></li>
<li><a href="http://bootswatch.com/" target="_blank">http://bootswatch.com/</a></li>
<li><a href="http://getkickstrap.com/themes/" target="_blank">http://getkickstrap.com/themes/</a></li>
</ul>
<hr />
<h2>4. Using LESS</h2>
<p>Bootstrap is build with LESS. LESS extends CSS with dynamic behavior such as variables, mixins, operations and functions.</p>
<ul>
<li><a href="http://lesscss.org/" target="_blank">http://lesscss.org/</a></li>
<li><a href="http://bootstrap.lesscss.ru/less.html" target="_blank">http://bootstrap.lesscss.ru/less.html</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://m5designstudio.com/2013/orlando-web-design/customizing-bootstrap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Orlando Web Design: CSS Page Layout &#8211; Understanding CSS Positioning</title>
		<link>http://m5designstudio.com/2013/orlando-web-design/css-page-layout/</link>
		<comments>http://m5designstudio.com/2013/orlando-web-design/css-page-layout/#comments</comments>
		<pubDate>Sat, 23 Feb 2013 23:50:29 +0000</pubDate>
		<dc:creator>M5 Design Studio</dc:creator>
				<category><![CDATA[orlando web design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://m5designstudio.com/?p=3217</guid>
		<description><![CDATA[Orlando Web Design &#38; Development CSS Page Layout: Understanding CSS Positioning There are 3 ways of creating CSS layouts: Using floats &#38; margins Using absolute positioning Using relative positioning So, what technique should you use? Without a doubt the easiest &#8230; <a href="http://m5designstudio.com/2013/orlando-web-design/css-page-layout/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-3319" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/web-design-orlando-lesson6.png" alt="web design orlando lesson 6" width="580" height="243" /></p>
<h2>Orlando Web Design &amp; Development</h2>
<h3>CSS Page Layout: Understanding CSS Positioning</h3>
<p>There are 3 ways of creating CSS layouts:</p>
<ol>
<li>Using floats &amp; margins</li>
<li>Using absolute positioning</li>
<li>Using relative positioning</li>
</ol>
<p>So, what technique should you use? Without a doubt the easiest &amp; cleanest way to create a layout is using floats &amp; margins.</p>
<p>Using floats and margins requires less code than using relative and absolute positioning and this technique also takes advantage of the cascading properties of CSS.<br />
<span id="more-3217"></span></p>
<h3>One layout 3 techniques:</h3>
<p>Let&#8217;s take a simple HTML page like this:</p>
<p><img class="aligncenter size-full wp-image-3314" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/web-design-before1.png" alt="web design before" width="365" height="432" /></p>
<p>And change the layout like the image below using:</p>
<ol>
<li>Floats &amp; margins</li>
<li>Absolute positioning</li>
<li>Relative positioning</li>
</ol>
<p><img class="aligncenter size-full wp-image-3313" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/web-design-after1.png" alt="web design after" width="368" height="399" /></p>
<h3>1. CSS Page layout using floats &amp; margins:</h3>
<p><img class="aligncenter size-full wp-image-3311" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/css-layout-using-floats.png" alt="css layout using floats &amp; margins" width="579" height="600" /></p>
<h3>2. CSS Page layout using absolute positioning:</h3>
<p><img class="aligncenter size-full wp-image-3310" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/css-layout-absolute-positioning.png" alt="css layout absolute positioning" width="580" height="745" /></p>
<h3>2. CSS Page layout using relative positioning:</h3>
<p><img class="aligncenter size-full wp-image-3322" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/css-layout-using-relative-positioning.png" alt="css layout using relative positioning" width="573" height="714" /></p>
]]></content:encoded>
			<wfw:commentRss>http://m5designstudio.com/2013/orlando-web-design/css-page-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Orlando Web Design: Defining a site in Dreamweaver</title>
		<link>http://m5designstudio.com/2013/orlando-web-design/defining-site-dreamweaver/</link>
		<comments>http://m5designstudio.com/2013/orlando-web-design/defining-site-dreamweaver/#comments</comments>
		<pubDate>Tue, 19 Feb 2013 20:24:23 +0000</pubDate>
		<dc:creator>M5 Design Studio</dc:creator>
				<category><![CDATA[orlando web design]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[Dreamweaver]]></category>

		<guid isPermaLink="false">http://m5designstudio.com/?p=3147</guid>
		<description><![CDATA[Orlando Web Design &#38; Development Dreamweaver is used to create and edit web pages on your local computer. Once the web pages are done, using FTP (file transfer protocol) the final files are uploaded to a remote web server (web &#8230; <a href="http://m5designstudio.com/2013/orlando-web-design/defining-site-dreamweaver/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-3315" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/dreamweaver-define-site-ftp.png" alt="dreamweaver define site &amp; connect ftp" width="580" height="243" /></p>
<h2>Orlando Web Design &amp; Development</h2>
<p>Dreamweaver is used to create and edit web pages on your local computer. Once the web pages are done, using FTP (file transfer protocol) the final files are uploaded to a remote web server (web hosting) were they become available for users to view online.</p>
<p>In this tutorial you&#8217;ll learn how to:</p>
<ul>
<li>Set up your project files (local computer)</li>
<li>Define a local root folder (local computer version of your site)</li>
<li>Setup and connect to a remote server (web hosting server)</li>
<li>Upload files to the remote server using FTP</li>
</ul>
<p><span id="more-3147"></span></p>
<h3>1. What is a Dreamweaver “site”?</h3>
<p>A Dreamweaver “site” is the local or remote storage location for all the documents that belong to a website (HTML pages, CSS styles, Scripts, images, audio, video, etc.). A Dreamweaver site provides a way to organize and manage all of your web documents, upload your site to a web server, track and maintain your links, and manage and share files.</p>
<p>A basic Dreamweaver site consists of two parts:</p>
<ol>
<li><strong>Local root folder:</strong>  Dreamweaver refers to this folder as your “<strong>local site</strong>.” This folder is located on your local computer and it stores all  the files that your website uses.</li>
<li><strong>Remote folder:</strong> Dreamweaver refers to this folder as your “<strong>remote site</strong>&#8220;. This folder is located on your web hosting company&#8217;s server and it stores all the files that users access on the Internet.</li>
</ol>
<h3>2. Understanding local and remote folder structure</h3>
<p style="text-align: left;">Set up a &#8220;website&#8221; folder in your local computer:</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-3194" src="http://m5designstudio.com/wp-content/uploads/2013/02/local-files.png" alt="local files" /></p>
<p>Name conventions:</p>
<ul>
<li>lowercase</li>
<li>No spaces</li>
</ul>
<p>Image files:</p>
<ul>
<li>Do not upload PSD files to the remote directory</li>
<li>Image files should only be JPG, PNG or GIF</li>
</ul>
<p><img class="aligncenter" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/dreamweaver-local-remote.png" alt="dreamweaver local &amp; remote sites" width="462" height="196" /></p>
<h3>3. Setting up the &#8220;Local Root Folder: or &#8220;Local Site&#8221;</h3>
<p>To set up a local version of your site, all you need to do is specify the local folder where you store all of your site files.</p>
<p>a. In Dreamweaver, choose Site &gt; New Site.</p>
<p><img class="aligncenter size-full wp-image-3152" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/orlando_dreamweaver.png" alt="orlando web design: Set up new site in Dreamweaver" width="394" height="136" /></p>
<p>b. In the <strong>Site Name</strong> text box, enter a name for your site. This name is for reference only; it does not appear in the browser.</p>
<p>c. In the <strong>Local Site Folder</strong> text box, click on the folder icon, browse your computer, and select the folder that stores your website and all its files.</p>
<p><img class="aligncenter size-full wp-image-3153" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/orlando_dreamweaver_newsite.png" alt="orlando dreamweaver local root folder" width="580" height="211" /></p>
<p>d. Click &#8220;<strong>Save</strong>&#8221; to close the Site Setup dialog box.</p>
<h3>4. Connect to a remote server via FTP/SFTP</h3>
<p>Once you’ve specified a local site in Dreamweaver, you can specify a remote server for your site as well. The remote server (often referred to as the web hosting server or web server) is where you publish your site files so that people can view them online.</p>
<p>Dreamweaver refers to the specified remote folder as your <em>remote site</em>.</p>
<p>a. In Dreamweaver, choose Site &gt; Manage Sites</p>
<p><img class="aligncenter size-full wp-image-3155" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/orlando_dreamweaver_manage_site.png" alt="orlando dreamweaver manage site" width="352" height="133" /></p>
<p>b. Select the Dreamweaver site you would like to connect via FTP/SFTP and click &#8220;Edit&#8221;</p>
<p><img class="aligncenter size-full wp-image-3156" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/orlando_dreamweaver_site.png" alt="orlando dreamweaver site" width="329" height="279" /></p>
<p>c. In the Site Setup dialog box, select the &#8220;Servers&#8221; category</p>
<p><img class="aligncenter size-full wp-image-3157" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/orlando_dreamweaver_server.png" alt="orlando dreamweaver server" width="580" height="211" /></p>
<p>d. Click the Add New Server button</p>
<p><img class="aligncenter size-full wp-image-3160" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/orlando_dreamweaver_new.png" alt="orlando_dreamweaver_new" width="580" height="259" /></p>
<p>e. Enter the FTP/SFTP information</p>
<p><img class="aligncenter size-full wp-image-3174" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/dreamweaver_ftp_settings.png" alt="dreamweaver_ftp_settings" width="448" height="369" /></p>
<ol>
<li>Use Secure FTP (SFTP) if your firewall configuration requires use of secure FTP. SFTP uses encryption and public keys to secure a connection to your testing server.</li>
<li>Enter the FTP/SFTP address</li>
<li>Enter username</li>
<li>Enter password</li>
<li>Root Directory enter public_html</li>
<li>Check &#8220;Save&#8221;</li>
<li>Click on &#8220;Test&#8221;</li>
</ol>
<p><img class="aligncenter size-full wp-image-3166" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/dreamweaver_test.png" alt="dreamweaver test ftp/sftp connection" width="447" height="370" /></p>
<p>If Dreamweaver successfully connects to your server click &#8220;OK&#8221;.<br />
If Dreamweaver cannot connect to the server double check that the information you entered is accurate.</p>
<p>5. Click &#8220;save&#8221;</p>
<p><img class="aligncenter size-full wp-image-3167" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/dreamweaver_save.png" alt="dreamweaver save server information" width="580" height="255" /></p>
<p>6. Click &#8220;done&#8221;</p>
<p><img class="aligncenter size-full wp-image-3168" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/dreamweaver-done.png" alt="dreamweaver click done" width="326" height="277" /></p>
<h3>5. Transferring files</h3>
<h4>A. Put files on a remote server:</h4>
<p>You can put files from the local site to the remote site</p>
<p>1. Open the Files panel toolbar:<br />
From the main menu go to Window&gt; Files</p>
<p><img class="aligncenter size-full wp-image-3177" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/dreamweaver_files_panel.png" alt="dreamweaver files panel" width="228" height="310" /></p>
<p>2. Click on the &#8220;Expand&#8221; button</p>
<p><img class="aligncenter size-full wp-image-3178" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/dreamweaver-expand-button.png" alt="dreamweaver files expand button" width="244" height="229" /></p>
<p>3. Click on the &#8220;Connect&#8221; button</p>
<p><img class="aligncenter size-full wp-image-3179" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/dreamwaver-connect-button.png" alt="dreamwaver files connect button" width="493" height="234" /></p>
<p>Do <strong>one</strong> of the following to put the file on the remote server:<br />
a. Select the file and click the &#8220;Put&#8221; button (blue arrow going up) in the Files panel toolbar</p>
<p><img class="aligncenter size-full wp-image-3181" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/dreamweaver-put-button.png" alt="dreamweaver put button" width="473" height="197" /></p>
<p>or</p>
<p>b.  Select the file and drag and drop it into the remote folder</p>
<p><img class="aligncenter" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/dreamweaver_drop_file.png" alt="dreamweaver drop file" width="476" height="222" /></p>
<p>Now you should see the file on the remote folder</p>
<p><img class="aligncenter size-full wp-image-3183" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/dreamweaver_index_file.png" alt="dreamweaver index file" width="476" height="222" /></p>
<h4>B. Get files from a remote server</h4>
<p>Use the Get command to copy files from the remote site to your local site.</p>
<p>Do one of the following to get the file:</p>
<ul>
<li>Select the file and click the &#8220;Get&#8221; button (green arrow going down) in the Files panel toolbar</li>
<li>Select the file and drag and drop it from the remote server to the local server</li>
</ul>
<p><img class="aligncenter size-full wp-image-3185" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/dreamweaver_get_button.png" alt="dreamweaver get button" width="462" height="196" /></p>
]]></content:encoded>
			<wfw:commentRss>http://m5designstudio.com/2013/orlando-web-design/defining-site-dreamweaver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Orlando Web Design: Absolute Vs. Relative CSS Positioning</title>
		<link>http://m5designstudio.com/2013/orlando-web-design/absolute-relative-css-positioning/</link>
		<comments>http://m5designstudio.com/2013/orlando-web-design/absolute-relative-css-positioning/#comments</comments>
		<pubDate>Tue, 19 Feb 2013 19:21:05 +0000</pubDate>
		<dc:creator>M5 Design Studio</dc:creator>
				<category><![CDATA[orlando web design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://m5designstudio.com/?p=3208</guid>
		<description><![CDATA[Orlando Web Design &#38; Development 1. Position property: The &#8220;position&#8221; property specifies the type of positioning method used for an element PROPERTY POSSIBLE VALUES EXAMPLES position absolute, relative, fixed, static, inherit div { position: absolute}div { position: relative} 2. The &#8230; <a href="http://m5designstudio.com/2013/orlando-web-design/absolute-relative-css-positioning/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><img src="http://m5designstudio.com/wp-content/uploads/2013/02/web-design-orlando-lesson5.png" alt="web design orlando lesson5" title="" width="580" height="243" class="aligncenter size-full wp-image-3317" /></p>
<h2>Orlando Web Design &amp; Development</h2>
<h3>1. Position property:</h3>
<p>The &#8220;position&#8221; property specifies the type of positioning method used for an element</p>
<table width="616" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td valign="top" width="76">
<p align="center"><strong>PROPERTY</strong></p>
</td>
<td valign="top" width="235">
<p align="center"><strong>POSSIBLE VALUES</strong></p>
</td>
<td valign="top" width="156">
<p align="center"><strong>EXAMPLES</strong></p>
</td>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2" width="76">
<p align="center"><strong>position</strong></p>
</td>
<td valign="top" width="235">absolute, relative, fixed, static, inherit</td>
<td valign="top" width="156">div { position: absolute}div { position: relative}</td>
</tr>
</tbody>
</table>
<h3>2. The coordinate plane</h3>
<p>The position property uses a similar system to the coordinate plane in order to position an element in a web page.<span id="more-3208"></span></p>
<p><img class="aligncenter size-full wp-image-3224" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/css-coordinate-plane.png" alt="css coordinate plane" width="500" height="497" /></p>
<p>The coordinate plane has two axes (the <em>x</em>-axis and <em>y</em>-axis) and one origin.</p>
<p>Points on the plane are located using two numbers &#8211; the x and y coordinates. These are the horizontal and vertical distances of the point from a specific location called the origin.</p>
<h3><em>X</em> axis</h3>
<p>The horizontal scale is called the <em>x</em>-axis. As you go to the right on the scale from zero, the values are positive. As you go to the left from zero, the values are negative.</p>
<h3><em>Y</em> axis</h3>
<p>The vertical scale is called the <em>y</em>-axis. As you go up from zero the numbers increase with a  positive value. As you go down from zero the numbers increase with a  negative value.</p>
<h3>2. The browser&#8217;s coordinate plane</h3>
<p>One of the differences between the coordinate plane and the browser is that in the browser the the origin (0,0) is on the top left corner an that the horizontal X values and vertical Y values are both positive.</p>
<p><img class="aligncenter size-full wp-image-3226" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/css-coordinate-plane1.png" alt="Browser css coordinate plane" width="479" height="570" /></p>
<p>In order to see the negative values we need to add negative rulers on the left &amp; top sides of the origin.</p>
<p><img class="aligncenter size-full wp-image-3227" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/browser-coordinate-plane.png" alt="browser coordinate plane" width="479" height="570" /></p>
<p>Depending on the position property value used, the origin of the coordinate plane can change, let&#8217;s see some examples.</p>
<h3>3. Top, Bottom, Right &amp; Left Properties</h3>
<p>You can set the position of an HTML element with the top, bottom, right, &amp; left properties. The values can be set with a lenght measurement like pixels or with a percentage value.</p>
<h3>4. Absolute CSS Positioning without a parent</h3>
<p>When you place an element with absolute positioning, you can give it exact positioning values to place it on specific coordinates on the browser.</p>
<p>If the absolute positioned HTML element does not have a parent element holding it,  it will use the whole browser window to position it&#8217;s origin.</p>
<p>In order to position an element, you must use the CSS &#8220;position&#8221; property in conjunction with  the properties &#8220;top&#8221;, &#8220;bottom&#8221;, &#8220;right&#8221;, or  &#8220;left &#8221; .</p>
<p><strong>Example:</strong></p>
<p><img class="aligncenter size-full wp-image-3242" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/div-tag-with-image.png" alt="div tag with image" width="106" height="162" /></p>
<p>The above yellow div tag that holds an image with the styles:</p>
<pre>div{ 
    width: 100px;
    height: 150px;
    background: yellow;
    }</pre>
<p>If we want to absolute position it on the left top corner of the browser window, we will use the styles:</p>
<pre>div{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100px;
    height: 150px;
    background: yellow;
    }</pre>
<p><img class="aligncenter size-full wp-image-3235" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/absolute-positioning-top.png" alt="absolute positioning top" width="479" height="570" /></p>
<p>If you want to move the position of the div tag to the left so that only half of the image shows in the browser, you&#8217;ll need to use left negative values.</p>
<p><img class="aligncenter" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/left-negative.png" alt="left negative possitioning" width="479" height="570" /></p>
<pre>div{
    position: absolute;
    left: -50px;
    top: 0px;
    width: 100px;
    height: 150px;
    background: yellow;
    }</pre>
<p>If you want to move the div tag up so that only half of the image shows in the browser, you&#8217;ll need to use top negative values.</p>
<p><img class="aligncenter size-full wp-image-3239" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/top-negative-possitioning.png" alt="top negative possitioning" width="479" height="570" /></p>
<pre>div{
    position: absolute;
    left: 0px;
    top: -75px;
    width: 100px;
    height: 150px;
    background: yellow;
    }</pre>
<p>You can use the properties &#8220;top&#8221;, &#8220;bottom&#8221;, &#8220;right&#8221;, or  &#8220;left &#8221; to  absolute position an HTML element with negative or positive values in the browser window</p>
<p><strong>Example 2:</strong></p>
<p>If you want to position the div tag on the bottom right corner, you can use the styles:</p>
<pre>div{
    position: absolute;
    bottom:0px;
    right:0px;
    width: 100px;
    height: 150px;
    background: yellow;
    }</pre>
<p><img class="aligncenter size-full wp-image-3236" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/absolute-positioning-bottom-right.png" alt="absolute positioning bottom right" width="479" height="570" /></p>
<h3>5. Relative Positioning</h3>
<p>When you place an element with relative positioning, the element is positioned relative to its normal or default position.</p>
<p>In order to relative position an element, you must use the CSS “position” property in conjunction with  the properties “top”, “bottom”, “right”, or  “left ” .</p>
<p><strong>Example 1:</strong></p>
<p>The HTML page below has 2 paragraphs and one image.</p>
<p><img class="aligncenter size-full wp-image-3253" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/relative-positioning.png" alt="relative positioning" width="479" height="455" /></p>
<p>When you move an HTML element with relative positioning, the origin is located on the top left corner of the element itself. Regardless of where the element is positioned by default, the origin will always be located on the top left corner of the element itself.</p>
<p><img class="aligncenter size-full wp-image-3255" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/relative-positioning-origin.png" alt="relative positioning origin" width="479" height="570" /></p>
<p>If you want to move the image to the right 200px using relative position you will use the styles:</p>
<p><img class="aligncenter size-full wp-image-3257" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/relative-positioning-left.png" alt="relative positioning left" width="479" height="479" /></p>
<pre>img{
    position: relative;
    top: 0px;
    left: 200px;
    }</pre>
<p><strong>Example 2:</strong></p>
<p>If you want to move the image up 50px using relative position you will use negative top values:</p>
<p><img class="aligncenter size-full wp-image-3258" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/relative-positioning-top.png" alt="relative positioning top" width="479" height="485" /></p>
<pre>img{
    position: relative;
    top: -50px;
    left: 0px;
    }</pre>
<p>When you place an element with relative positioning, the browser preserves the original space that that element occupied. Below you can see the gap preserved between the paragraphs.</p>
<p><img class="aligncenter size-full wp-image-3259" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/relative-positioning-left-top.png" alt="relative-positioning-left-top" width="479" height="463" /></p>
<p>The image  has the styles:</p>
<pre>img{
    position: relative;
    top: -50px;
    left: 200px;
    }</pre>
<p><img class="aligncenter size-full wp-image-3260" title="relative-positioning-lt-origin" src="http://m5designstudio.com/wp-content/uploads/2013/02/relative-positioning-lt-origin.png" alt="" width="479" height="483" /></p>
<p>&nbsp;</p>
<h3>6. Absolute CSS Positioning within a parent element</h3>
<p>The real power of absolute positioning is when it&#8217;s combined with a relative positioned parent.</p>
<p><strong>Example:</strong></p>
<p>In the HTML page below we have 2 div tags:</p>
<ol>
<li><strong>Gray div tag:</strong> the parent element that holds a yellow div tag with an image</li>
<li><strong>Yellow div tag:</strong> the child element that holds an image</li>
</ol>
<p><img class="aligncenter size-full wp-image-3247" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/absolute-positioning-parent.png" alt="absolute-positioning-parent" width="479" height="570" />The gray div tag is positioned relative and has these styles:</p>
<pre>div.gray{
    width:500px;
    height:500px;
    margin:100px auto;
    background-color:gray;
    position:relative
}</pre>
<p>The yellow div tag is positioned absolute and has these styles:</p>
<pre>div.yellow{
    width:100px;
    height:150px;
    background-color:yellow;
    position:absolute;
    left: 150px;
    top: 50px;
}</pre>
<p>Since the yellow div tag is now within the gray relative positioned parent, the  origin to position the yellow div tag has changed.</p>
<h3><img class="aligncenter size-full wp-image-3248" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/absolute-positioning-origin.png" alt="absolute-positioning-origin" width="479" height="570" /></h3>
<p>The coordinates for the yellow div tag now start on the parent&#8217;s left and top corner, and not on the HTML page itself.</p>
<p>When you place an element with absolute positioning, the browser does not preserve the original space that that element occupied.</p>
]]></content:encoded>
			<wfw:commentRss>http://m5designstudio.com/2013/orlando-web-design/absolute-relative-css-positioning/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Orlando Web Design: HTML5 for Beginners Lesson 4</title>
		<link>http://m5designstudio.com/2013/orlando-web-design/html5-beginners-lesson-4/</link>
		<comments>http://m5designstudio.com/2013/orlando-web-design/html5-beginners-lesson-4/#comments</comments>
		<pubDate>Tue, 12 Feb 2013 21:21:42 +0000</pubDate>
		<dc:creator>M5 Design Studio</dc:creator>
				<category><![CDATA[orlando web design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://m5designstudio.com/?p=3105</guid>
		<description><![CDATA[Orlando Web Design &#38; Development 1. The box model In CSS, the term &#8220;box model&#8221; is used when talking about design and layout: Margin &#8211; Clears an area around the border. The margin does not have a background color, it &#8230; <a href="http://m5designstudio.com/2013/orlando-web-design/html5-beginners-lesson-4/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<h1><img class="aligncenter size-full wp-image-3134" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/htmls5_lesson4.jpg" alt="html 5 lesson4 - Creating a simple layout with css" width="580" height="243" /></h1>
<h2>Orlando Web Design &amp; Development</h2>
<hr />
<h2>1. The box model</h2>
<p>In CSS, the term &#8220;box model&#8221; is used when talking about design and layout:<br />
<span id="more-3105"></span><br />
<img class="aligncenter size-full wp-image-3107" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/box-model-2.jpg" alt="CSS box-model" width="570" height="320" /></p>
<ul>
<li><strong>Margin</strong> &#8211; Clears an area around the border. The margin does not have a background color, it is completely transparent</li>
<li><strong>Border</strong> &#8211; A border that goes around the padding and content. The border is affected by the background color of the box</li>
<li><strong>Padding </strong>- Clears an area around the content. The padding is affected by the background color of the box</li>
<li><strong>Content</strong> &#8211; The content of the box, where text and images appear</li>
</ul>
<p><strong>Width and Height:</strong></p>
<p>To know the full size of the element, you must also add the padding, border and margin.</p>
<p><img class="aligncenter size-full wp-image-3108" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/box-model.jpg" alt="css box-model width &amp; height" width="570" height="320" /></p>
<p><strong>Total element width =</strong> width + left padding + right padding + left border + right border + left margin + right margin</p>
<p><strong>Total element height =</strong> height + top padding + bottom padding + top border + bottom border + top margin + bottom margin</p>
<h2>2. Inspecting with Firebug</h2>
<p><a href="https://getfirebug.com/" target="_blank">Firebug</a> integrates with Firefox to put a wealth of web development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.</p>
<p><img class="aligncenter size-full wp-image-3106" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/firebug_CSS_colors.jpg" alt="firebug_CSS_colors" width="580" height="365" /></p>
<p><img class="aligncenter size-full wp-image-3110" title="" src="http://m5designstudio.com/wp-content/uploads/2013/02/firebug_CSS_colors2.jpg" alt="firebug_CSS_colors2" width="570" height="320" /></p>
<h2>3. Creating a basic layout with CSS</h2>
<table width="616" border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th valign="top" width="76">
<p align="center"><strong>PROPERTY</strong></p>
</th>
<th valign="top" width="235">
<p align="center"><strong>POSSIBLE VALUES</strong></p>
</th>
<td valign="top" width="156">
<p align="center"><strong>EXAMPLES</strong></p>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2" width="76">
<p align="center"><strong>margin</strong></p>
</td>
<td valign="top" width="235">Lengths, percentages, and the predefined value auto.</td>
<td valign="top" width="156">
<p>margin-top:100px;
  </p>
<p>margin-bottom:100px; </p>
<p>margin-right:50px;    </p>
<p>margin-left:50px;</p>
</td>
</tr>
<tr>
<td valign="top" width="235">
<p>Shorthand: declare all the margin properties at once.</p>
<p>margin: Topvalue Leftvalue BottomValue RightValue</p>
</td>
<td valign="top" width="156">
<p>margin: 10px 20px 5px 15px;</p>
<p>margin: 0px auto;</p>
</td>
</tr>
<tr>
<td rowspan="2" width="76">
<p align="center"><strong>padding</strong></p>
</td>
<td valign="top" width="235">Lengths, percentages, and the predefined value auto.</td>
<td valign="top" width="156">padding-top:100px;<br />
padding -bottom:100px;<br />
padding -right:50px;<br />
padding -left:50px;</td>
</tr>
<tr>
<td valign="top" width="235">
<p>Shorthand: declare all the margin properties at once.</p>
<p>padding: Topvalue Leftvalue BottomValue RightValue</p>
</td>
<td valign="top" width="156">
<p>padding: 10px 20px 5px 15px;</p>
<p>padding: 10px 20px;</p>
</td>
</tr>
</tbody>
</table>
<h3>a. &lt;body&gt; Tag</h3>
<pre>body{<strong> </strong>
margin: 0px;
padding: 0px;
background-color:#cccccc
}</pre>
<h3></h3>
<h3>b.&lt;div&gt; tags</h3>
<p>The &lt;div&gt; tag defines a division or a section in an HTML document. The &lt;div&gt; tag is used to group block-elements to format them with CSS.</p>
<h3>Centering a &lt;div&gt; tag</h3>
<p>A &lt;div&gt; tag can be used as a wrapper to contain a webpage. To center a &lt;div&gt; tag use  left and right margin &#8220;auto&#8221;:</p>
<pre>#wrapper{
width:960px;
margin: 0 auto;
height: auto; 
overflow:hidden
 }</pre>
<h3>c. Display Property</h3>
<p>The display property defines how a certain HTML element should be displayed.<br />
Please note: Elements using the property display &#8220;none&#8221; will not take up space on the page.</p>
<table width="616" border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th valign="top" width="76">
<p align="center"><strong>PROPERTY</strong></p>
</th>
<th valign="top" width="235">
<p align="center"><strong>POSSIBLE VALUES</strong></p>
</th>
<th valign="top" width="156">
<p align="center"><strong>EXAMPLES</strong></p>
</th>
</tr>
</thead>
<tbody>
<tr>
<td width="76">
<p align="center"><strong>display</strong></p>
</td>
<td width="235">none, block, inline, inline-block</td>
<td width="156">
<p>div { display:none; }
  </p>
<p>div { display:inline; }</p>
</td>
</tr>
</tbody>
</table>
<h3>d. Float Property</h3>
<p>The float property specifies whether or not a box (an element) should float.<strong><br />
Note:</strong> Absolutely positioned elements ignores the float property.</p>
<table width="616" border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th valign="top" width="76">
<p align="center"><strong>PROPERTY</strong></p>
</th>
<th valign="top" width="235">
<p align="center"><strong>POSSIBLE VALUES</strong></p>
</th>
<th valign="top" width="156">
<p align="center"><strong>EXAMPLES</strong></p>
</th>
</tr>
</thead>
<tbody>
<tr>
<td width="76">
<p align="center"><strong>float</strong></p>
</td>
<td width="235">left, right, none</td>
<td width="156">div { float:left; }</td>
</tr>
</tbody>
</table>
<h3>e. Clear Property</h3>
<p>The clear property specifies which sides of an element where other floating elements are not allowed.</p>
<table width="616" border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th valign="top" width="76">
<p align="center"><strong>PROPERTY</strong></p>
</th>
<th valign="top" width="235">
<p align="center"><strong>POSSIBLE VALUES</strong></p>
</th>
<th valign="top" width="156">
<p align="center"><strong>EXAMPLES</strong></p>
</th>
</tr>
</thead>
<tbody>
<tr>
<td width="76">
<p align="center"><strong>clear</strong></p>
</td>
<td width="235">left, right, none, both, inherit</td>
<td width="156">div { clear:left; }</td>
</tr>
</tbody>
</table>
<h3>f. Overflow</h3>
<p>The overflow property specifies what happens if content overflows an element&#8217;s box.</p>
<table width="616" border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th valign="top" width="76">
<p align="center"><strong>PROPERTY</strong></p>
</th>
<th valign="top" width="235">
<p align="center"><strong>POSSIBLE VALUES</strong></p>
</th>
<th valign="top" width="156">
<p align="center"><strong>EXAMPLES</strong></p>
</th>
</tr>
</thead>
<tbody>
<tr>
<td width="76">
<p align="center"><strong>overflow</strong></p>
</td>
<td width="235">visible, hidden, scroll, auto, inherit</td>
<td width="156">div {overflow:scroll;}</td>
</tr>
</tbody>
</table>
<h3>g. Visibility Property</h3>
<p>The visibility property specifies whether or not an element is visible.<strong></strong><br />
<strong>Please note:</strong> Invisible elements take up space on the page.</p>
<table width="616" border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th valign="top" width="76">
<p align="center"><strong>PROPERTY</strong></p>
</th>
<td valign="top" width="235">
<p align="center"><strong>POSSIBLE VALUES</strong></p>
</th>
<td valign="top" width="156">
<p align="center"><strong>EXAMPLES</strong></p>
</th>
</tr>
</thead>
<tbody>
<tr>
<td width="76">
<p align="center"><strong>visibility</strong></p>
</td>
<td width="235">visible, hidden, inherit</td>
<td width="156">div { visibility:hidden; }</td>
</tr>
</tbody>
</table>
<h3>h. Styling a Horizontal Menu</h3>
<p>To style a horizontal &lt;ul &gt; menu located in the &lt;nav&gt; tag  add the following styles:</p>
<pre>nav ul{
margin: 0px;
padding: 0px;
list-style-type: none;
}

nav li{
display: inline;
margin: 0px;
color: white;/*Color of the text*/
font-weight: bold;
font-size:14px;
font-family: Verdana, Helvetica, sans-serif ;
}

nav li a:link{
float: left;
display: block;
text-decoration: none;
margin: 0px;
padding: 15px;/*padding inside each tab*/
border-right: 2px solid white; /* line divider between tabs*/
color: white;/*color of the link*/
background-color: black; /*background of the tabs */
height:20px;
}

nav li a:visited{
color: #eeeeee;
}

nav li a:hover{
background-color: gray; /*background of tabs for hover state*/
}

nav li a:active{
color: white;
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://m5designstudio.com/2013/orlando-web-design/html5-beginners-lesson-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Orlando Web Design: HTML5 for Beginners Lesson 3</title>
		<link>http://m5designstudio.com/2013/orlando-web-design/html5-beginners-lesson-3/</link>
		<comments>http://m5designstudio.com/2013/orlando-web-design/html5-beginners-lesson-3/#comments</comments>
		<pubDate>Tue, 05 Feb 2013 21:17:04 +0000</pubDate>
		<dc:creator>M5 Design Studio</dc:creator>
				<category><![CDATA[orlando web design]]></category>

		<guid isPermaLink="false">http://m5designstudio.com/?p=3077</guid>
		<description><![CDATA[Orlando Web Design &#38; Development 1. What is CSS? CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles are normally saved in external in a CSS document with the extension .css 2. CSS Benefits Separate &#8230; <a href="http://m5designstudio.com/2013/orlando-web-design/html5-beginners-lesson-3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-3083" title="" alt="orlando web design html5 css" src="http://m5designstudio.com/wp-content/uploads/2013/02/orlando-html5-css.jpg" width="580" height="243" /></p>
<h1>Orlando Web Design &amp; Development</h1>
<hr />
<h2>1. 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>
<div>Styles are normally saved in external in a CSS document with the extension .css</div>
</li>
</ul>
<hr />
<h2>2. CSS Benefits</h2>
<ul>
<li>Separate content from presentation</li>
<li>Reduce file size</li>
<li>Cleaner Code</li>
<li>External Style Sheets save time</li>
<li>A webpage can have different styles for different devices like screen, mobile, and print</li>
<li>Accessibility</li>
</ul>
<hr />
<p><span id="more-3077"></span></p>
<h2>3. CSS Syntax</h2>
<p><img class="aligncenter size-full wp-image-3078" title="" alt="CSS_Syntax" src="http://m5designstudio.com/wp-content/uploads/2013/02/CSS_Syntax.png" width="580" height="168" /></p>
<hr />
<h2>4. Kinds of CSS Styles</h2>
<h3>a. Inline Styles</h3>
<ul>
<li>Style specified inside an HTML element tag</li>
<li>Affect only that HTML tag.</li>
</ul>
<p><strong>Example: </strong></p>
<pre>&lt;p style="color:red"&gt;This is a paragraph.&lt;/p&gt;</pre>
<h3>b. Embedded Styles</h3>
<ul>
<li>Use to style only one page</li>
<li>Style specified in the head section of the HTML page</li>
</ul>
<p><strong>Example: </strong></p>
<pre>&lt;head&gt;
 &lt;style type="text/css"&gt;
 p {color:red;}
 &lt;/style&gt;
 &lt;/head&gt;</pre>
<h3>c. External Styles</h3>
<ul>
<li>An external style sheet is ideal when the style is applied to many pages.</li>
</ul>
<p><strong>Step1:</strong> Create a link to the CSS file</p>
<pre>&lt;head&gt;
 &lt;link rel="stylesheet" type="text/css" href="mystyle.css" /&gt;
 &lt;/head&gt;</pre>
<p><strong>Step 2:</strong> Create the styles in the CSS document</p>
<pre> p {color:red;}</pre>
<hr />
<h2>5. Cascading Order</h2>
<p>Style precedence from higher to lower priority:</p>
<ol>
<li>User defined</li>
<li>Inline style (inside an HTML element)</li>
<li>Embedded style sheet (in the head section)</li>
<li>External style sheet</li>
<li>Browser default</li>
</ol>
<p>An inline style (inside an HTML element) has the highest priority, which means that it will override a style defined inside the &lt;head&gt; tag, or in an external style sheet, or in a browser.</p>
<p>If the link to the external style sheet is placed after the internal style sheet in HTML &lt;head&gt;, the external style sheet will override the internal style sheet!</p>
<p>Within the external sheet or the embedded styles the last style declared is the strongest and it can override a previous declaration.</p>
<hr />
<h2>6. Document Tree</h2>
<p><img class="aligncenter size-full wp-image-3085" title="" alt="css docuemnt tree" src="http://m5designstudio.com/wp-content/uploads/2013/02/css-docuemnt-tree.jpg" width="579" height="324" /></p>
<p><strong>&lt;h1&gt;, &lt;p&gt; &amp; &lt;strong&gt;:</strong></p>
<ul>
<li>Are <strong>siblings</strong> to each other because they share the &lt;body&gt; element as their common parent</li>
<li>Are<strong> descendants</strong> of the &lt;html&gt; element, which is their <strong>ancestor</strong>.</li>
</ul>
<hr />
<h2>7. Style Inheritance</h2>
<p>Some values can be inherited by the children of an element.</p>
<p>If one of these values is left unspecified the HTML element will inherit the style setting from its parent.</p>
<p><strong>Example:</strong></p>
<p>If you specify that your &lt;body&gt; tag has a font size of 14px. The paragraphs will inherit the size unless you specify a size for paragraphs.</p>
<hr />
<h2>8. ID&#8217;s Vs. Classes:</h2>
<p>In addition to setting a style for a HTML element, CSS allows you to specify your own selectors called &#8220;id&#8221; and &#8220;class&#8221;.</p>
<h3>a. The ID Selector:</h3>
<ul>
<li>The id selector is used to specify a style for a single, unique element.</li>
<li>The id selector uses the id attribute of the HTML element, and is defined with a &#8220;#&#8221;.</li>
</ul>
<p><strong>Example: </strong></p>
<p><strong>Step1:</strong> Assign the ID</p>
<pre>&lt;p id="products"&gt;text&lt;/p&gt;</pre>
<p><strong>Step 2:</strong> Create the styles in the CSS document</p>
<pre>#products {color:red;}</pre>
<h3>b. The Class Selector:</h3>
<ul>
<li>The class selector is used to specify a style for a group of elements.</li>
<li>The class selector uses the HTML class attribute, and is defined with a &#8220;.&#8221;</li>
</ul>
<p><strong>Example: </strong></p>
<p><strong>Step1:</strong> Assign the class</p>
<pre>&lt;p class="products"&gt;text&lt;/p&gt;</pre>
<p><strong>Step 2:</strong> Create the styles in the CSS document</p>
<pre>.products {text-align:center;}</pre>
<hr />
<h2>9. CSS Reset Vs. Normalize CSS</h2>
<p>CSS Reset &amp; Normalize CSS are needed to ensure a more or less &#8220;identical cross-browser&#8221; presentation of your web-sites. By default different browsers use different values for margin, padding or line-height.</p>
<p>CSS Reset &amp; CSS Normalize help most browsers to render sites more similar.</p>
<p><strong>Popular CSS Resets:</strong></p>
<ul>
<li><em><strong>Eric Meyer&#8217;s Reset CSS</strong></em><a href="http://meyerweb.com/eric/tools/css/reset/" target="_blank">
<p>http://meyerweb.com/eric/tools/css/reset/</a></li>
</ul>
<ul>
<li><strong>Yahoo&#8217;s CSS Reset</strong><a href="http://developer.yahoo.com/yui/3/cssreset/" target="_blank">
<p>http://developer.yahoo.com/yui/3/cssreset/</a></li>
</ul>
<p>Normalize CSS is a new HTML5-ready alternative to CSS resets.</p>
<p><a href="http://necolas.github.com/normalize.css/" target="_blank">Normalize.css</a> makes browsers render all elements more consistently and in line with modern standards. It precisely targets only the styles that need normalizing.</p>
<p>Normalize.css:</p>
<ul>
<li>preserves retains many useful default browser styles.</li>
<li>fixes common desktop and mobile browser bugs that are out of scope for resets. This includes display settings for HTML5 elements &amp; correcting <code>font-size</code> for preformatted text, SVG overflow in IE9.</li>
<li>doesn&#8217;t clutter your debugging tools</li>
<li>is modular, broken down into relatively independent sections, making it easy for you to see exactly which elements need specific styles.</li>
</ul>
<hr />
<h2>10. CSS3</h2>
<p>CSS3 is split up into &#8220;modules&#8221;. The old specification has been split into smaller pieces, and new ones are also added.</p>
<p>Some of the most important CSS3 modules are:</p>
<ul>
<li>Selectors</li>
<li>Box Model</li>
<li>Backgrounds and Borders</li>
<li>Text Effects</li>
<li>2D/3D Transformations</li>
<li>Animations</li>
<li>Multiple Column Layout</li>
<li>User Interface</li>
</ul>
<h3>Useful resources for CSS 3</h3>
<ul>
<li><a href="http://www.colorzilla.com/gradient-editor/" target="_blank">Gradient Generator</a></li>
<li><a href="http://css3generator.com/" target="_blank">css3 Generator</a></li>
</ul>
<hr />
<h2>11. CSS Properties</h2>
<h3>a. Comments</h3>
<p>Comments are a great way to:</p>
<ul>
<li>Keep styles organized</li>
<li>Troubleshoot when styles conflict</li>
</ul>
<p><strong>Example:</strong></p>
<pre>/*This is a comment*/</pre>
<h3>b. Measurement Values</h3>
<table width="100%" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th width="25%"><strong>Unit</strong></th>
<th width="75%"><strong>Description</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<p align="center">%</p>
</td>
<td width="75%">percentage</td>
</tr>
<tr>
<td>
<p align="center">in</p>
</td>
<td width="75%">inch</td>
</tr>
<tr>
<td>
<p align="center">cm</p>
</td>
<td width="75%">centimeter</td>
</tr>
<tr>
<td>
<p align="center">mm</p>
</td>
<td width="75%">millimeter</td>
</tr>
<tr>
<td>
<p align="center">em</p>
</td>
<td width="75%">The size can be calculated from pixels to em using this formula: pixels/16=em</td>
</tr>
<tr>
<td>
<p align="center">pt</p>
</td>
<td width="75%">point (1 pt is the same as 1/72 inch)</td>
</tr>
<tr>
<td>
<p align="center">pc</p>
</td>
<td width="75%">pica (1 pc is the same as 12 points)</td>
</tr>
<tr>
<td>
<p align="center">px</p>
</td>
<td width="75%">pixels (a dot on the computer screen)</td>
</tr>
</tbody>
</table>
<h3>c. Color Values:</h3>
<p>HTML identifies color either by color name or color value (RGB &amp; Hexadecimal).</p>
<p><a href="http://www.w3schools.com/html/html_colornames.asp">147 color names are defined for HTML and CSS</a></p>
<table width="600" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th width="35%"><strong>Value</strong></th>
<th width="64%"><strong>Description</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td width="35%">color_name</td>
<td width="64%">A color name (e.g. red)</td>
</tr>
<tr>
<td width="35%">rgb(x,x,x)</td>
<td width="64%">An RGB value (e.g. rgb(255,0,0))</td>
</tr>
<tr>
<td width="35%">rgb(x%, x%, x%)</td>
<td width="64%">An RGB percentage value (e.g. rgb(100%,0%,0%))</td>
</tr>
<tr>
<td width="35%">#rrggbb</td>
<td width="64%">A HEX number (e.g. #ff0000)</td>
</tr>
</tbody>
</table>
<h3>d. Text Properties</h3>
<p><a href="http://www.w3schools.com/css/css_reference_atoz.asp" target="_blank">http://www.w3schools.com/css/css_reference_atoz.asp</a></p>
<table width="600" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th valign="top" width="85"><strong>Property</strong></th>
<th valign="top" width="225"><strong>Possible Values</strong></th>
<th valign="top" width="158"><strong>Examples</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td valign="top" width="85">font-family</td>
<td valign="top" width="225">Arial, Verdana, sans-serif, &#8220;Times New Roman&#8221;, Times, serif, etc.</td>
<td valign="top" width="158">p { font-family: Arial; }</td>
</tr>
<tr>
<td valign="top" width="85">font-size</td>
<td valign="top" width="225">Value in px, em or %</td>
<td valign="top" width="158">p { font-size:14px;}</td>
</tr>
<tr>
<td valign="top" width="85">font-style</td>
<td valign="top" width="225">Normal, italic, or oblique</td>
<td valign="top" width="158">p { font-style: italic; }</td>
</tr>
<tr>
<td valign="top" width="85">font-weight</td>
<td valign="top" width="225">Normal, bold, bolder, or lighter.</td>
<td valign="top" width="158">p{ font-weight: bold; }</td>
</tr>
<tr>
<td valign="top" width="85">font</td>
<td valign="top" width="225">in order : font-style font-variant font-weight font-size/line-height font-family</td>
<td valign="top" width="158">P{font: italic small-caps bold 12px arial,sans-serif}</td>
</tr>
<tr>
<td valign="top" width="85">color</td>
<td valign="top" width="225">Valid color names, RGB values, hexidecimal notation.</td>
<td valign="top" width="158">p { color: green; }p { color: rgb(0,255,0); }</p>
<p>p{ color: #00FF00; }</td>
</tr>
<tr>
<td valign="top" width="85">line-height</td>
<td valign="top" width="225">Numbers, percentages, lengths, and the predefined value of normal.</td>
<td valign="top" width="158">p{ line-height:140%; }</td>
</tr>
<tr>
<td valign="top" width="85">letter-spacing</td>
<td valign="top" width="225">Normal, length (px, em or %), or inherit</td>
<td valign="top" width="158">p {letter-spacing: 2px}</td>
</tr>
<tr>
<td valign="top" width="85">text-align</td>
<td valign="top" width="225">Left, right, center, or justify</td>
<td valign="top" width="158">p { text-align: center; }</td>
</tr>
<tr>
<td valign="top" width="85">text-decoration</td>
<td valign="top" width="225">None, underline, overline, line-through, or blink</td>
<td valign="top" width="158">p { text-decoration: none; }</td>
</tr>
</tbody>
</table>
<h3>e. Lists Properties</h3>
<table width="600" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th valign="top" width="74">Property</th>
<th valign="top" width="232">Possible Values</th>
<th valign="top" width="162">Examples</th>
</tr>
</thead>
<tbody>
<tr>
<td valign="top" width="74">list-style-type</td>
<td valign="top" width="232">disc, circle, square, decimal, decimal-leading-zero<br />
lower-roman, upper-roman, lower-alpha, upper-alpha</td>
<td valign="top" width="162">ul { list-style-type:square; }</td>
</tr>
<tr>
<td valign="top" width="74">list-style-position</td>
<td valign="top" width="232">inside or outside</td>
<td valign="top" width="162">ol { list-style-position:inside; }</td>
</tr>
<tr>
<td valign="top" width="74">list-style-image</td>
<td valign="top" width="232">URL values.</td>
<td valign="top" width="162">ul { list-style-image:url(image.jpg); }</td>
</tr>
<tr>
<td valign="top" width="74">list-style</td>
<td valign="top" width="232">In order :list-style-type<br />
list-style-position<br />
list-style-image</td>
<td valign="top" width="162">ul { list-style:disc inside url(image.gif); }</td>
</tr>
</tbody>
</table>
<h3>f. Border Properties:</h3>
<table border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th valign="top" width="190">Property</th>
<th valign="top" width="202">Possible Values</th>
<th valign="top" width="162">Examples</th>
</tr>
</thead>
<tbody>
<tr>
<td valign="top" width="190">border-style(sets styles for all borders)</td>
<td rowspan="5" valign="top" width="202">none, dotted, dashed, double, groove</td>
<td valign="top" width="162">div { border-style: dotted}</td>
</tr>
<tr>
<td valign="top">border-top-style</td>
<td valign="top" width="162">div { border-top-style: dotted}</td>
</tr>
<tr>
<td valign="top">border-right-style</td>
<td valign="top" width="162">div { border-rigt-style: dashed}</td>
</tr>
<tr>
<td valign="top">border-bottom-style</td>
<td valign="top" width="162">div { border-bottom-style: double}</td>
</tr>
<tr>
<td valign="top">border-left-style</td>
<td valign="top" width="162">div { border-left-style: groove}</td>
</tr>
<tr>
<td valign="top" width="190">border-width<br />
(sets widths for all borders)</td>
<td rowspan="5" valign="top" width="202">The width is set in pixels, or by using one of the three pre-defined values: thin, medium, or thick.</td>
<td valign="top" width="162">div { border-width: 5px}</td>
</tr>
<tr>
<td valign="top">border-top-width</td>
<td valign="top" width="162">div {border-top-width: thin }</td>
</tr>
<tr>
<td valign="top">border-right-width</td>
<td valign="top" width="162">div {border-right-width: medium }</td>
</tr>
<tr>
<td valign="top">border-bottom-width</td>
<td valign="top" width="162">div {border-bottom-width: 2px }</td>
</tr>
<tr>
<td valign="top">border-left-width</td>
<td valign="top" width="162">div {border-left-width: thick }</td>
</tr>
<tr>
<td valign="top" width="190">border-color<br />
(sets color for all borders)</td>
<td rowspan="5" valign="top" width="202">The color can be set by name, RGB or Hexadecimal value</td>
<td valign="top" width="162">div { border-color: red}</td>
</tr>
<tr>
<td valign="top">border-top-color</td>
<td valign="top" width="162">div { border-top-color: #000}</td>
</tr>
<tr>
<td valign="top">border-right-color</td>
<td valign="top" width="162">div { border-right-color: blue}</td>
</tr>
<tr>
<td valign="top">border-bottom-color</td>
<td valign="top" width="162">div { border-bottom-color: #333}</td>
</tr>
<tr>
<td valign="top">border-left-color</td>
<td valign="top" width="162">div { border-left-color: red}</td>
</tr>
<tr>
<td valign="top" width="190">border</td>
<td rowspan="5" valign="top" width="202">Shorthand: declare all the borders properties at once.border: width style color</td>
<td valign="top" width="162">div { border: 1px solid red}</td>
</tr>
<tr>
<td valign="top">border-top</td>
<td valign="top" width="162">div { border-top: 1px solid red}</td>
</tr>
<tr>
<td valign="top">border-right</td>
<td valign="top" width="162">div { border-right: 4px dashed blue}</td>
</tr>
<tr>
<td valign="top">border-bottom</td>
<td valign="top" width="162">div { border-bottom: 2px dotted red}</td>
</tr>
<tr>
<td valign="top">border-left</td>
<td valign="top" width="162">div { border-left: 5px dashed pink}</td>
</tr>
</tbody>
</table>
<h3>g. Background Properties</h3>
<table cellspacing="0" cellpadding="0">
<thead>
<tr>
<th valign="top" width="108"><strong>Property</strong></th>
<th valign="top" width="174"><strong>Possible Values</strong></th>
<th valign="top"><strong>Examples</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td valign="top" width="108">background-attachment</td>
<td valign="top" width="174">fixed or scroll</td>
<td valign="top">body { background-attachment:fixed; }</td>
</tr>
<tr>
<td valign="top" width="108">background-color</td>
<td valign="top" width="174">Valid color names, RGB &amp; Hex values,</td>
<td valign="top">body { background-color:green; }</td>
</tr>
<tr>
<td valign="top" width="108">background-image</td>
<td valign="top" width="174">URL values.</td>
<td valign="top">body { background-image: url(img.jpg); }</td>
</tr>
<tr>
<td valign="top" width="108">background-position</td>
<td valign="top" width="174">top left / top center / top right<br />
center left / center center / center right<br />
bottom left / bottom center / bottom right</td>
<td valign="top">body { background-position:10px 50px; }body { background-position:top center; }</td>
</tr>
<tr>
<td valign="top" width="108">background-repeat</td>
<td valign="top" width="174">Repeat , repeat-x , repeat-y or no-repeat</td>
<td valign="top">body { background-repeat:repeat-x; }body { background-repeat:no-repeat; }</td>
</tr>
<tr>
<td valign="top" width="108">background</td>
<td valign="top" width="174">In order:background-color<br />
background-image<br />
background-repeat<br />
background-attachment<br />
background-position</td>
<td valign="top">body { background:green url(image.jpg) no-repeat fixed center center; }</td>
</tr>
</tbody>
</table>
<h3>h. Styling Links</h3>
<p>Links must be style with the &#8220;<strong>L</strong>O<strong>V</strong>E <strong>HA</strong>TE RULE&#8221;</p>
<ul>
<li>a:<strong>l</strong>ink is used to indicate that the link has been unvisited.</li>
<li>a:<strong>v</strong>isited is used to indicate that the link has been visited.</li>
<li>a:<strong>h</strong>over indicates that a cursor is pointing at the link</li>
<li>a:<strong>a</strong>ctive pseudo-class indicates that the links are active.</li>
</ul>
<p><strong>Example:</strong></p>
<pre> a:link {color: #FF0000} 
 a:visited {color: #00FF00}
 a:hover {color: #FF00FF} 
 a:active {color: #0000FF}</pre>
<p><strong>Common styles:</strong></p>
<ul>
<li>text-decoration: none or underlined</li>
<li>color: red</li>
<li>background-color: red</li>
</ul>
<h3>i. Styling &lt;hr/&gt;</h3>
<p>Some properties supported are:</p>
<ul>
<li>background-color</li>
<li>height</li>
<li>width</li>
<li>border</li>
</ul>
<p><a href="http://css-tricks.com/examples/hrs/" target="_blank">More Examples on how to style the &lt;hr/&gt; tag</a><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://m5designstudio.com/2013/orlando-web-design/html5-beginners-lesson-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Orlando Web Design: HTML5 for Beginners Lesson 2</title>
		<link>http://m5designstudio.com/2013/orlando-web-design/html5-for-beginners-2/</link>
		<comments>http://m5designstudio.com/2013/orlando-web-design/html5-for-beginners-2/#comments</comments>
		<pubDate>Tue, 29 Jan 2013 21:35:13 +0000</pubDate>
		<dc:creator>M5 Design Studio</dc:creator>
				<category><![CDATA[orlando web design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://m5designstudio.com/?p=3000</guid>
		<description><![CDATA[Orlando Web Design &#38; Development 1. Website Organization &#38; Structure: A server is like a house because both store lots of things or information.  In a house rooms help us keep everything organized, while in a server information is organized &#8230; <a href="http://m5designstudio.com/2013/orlando-web-design/html5-for-beginners-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-3009" title="" src="http://m5designstudio.com/wp-content/uploads/2013/01/orlando-HTML-5.jpg" alt="HTML-5 for beginners" width="580" height="243" /></p>
<h2>Orlando Web Design &amp; Development</h2>
<hr />
<h2>1. Website Organization &amp; Structure:</h2>
<p><span id="more-3000"></span><br />
<img class="aligncenter size-full wp-image-3005" title="website_structure" src="http://m5designstudio.com/wp-content/uploads/2013/01/website_structure.jpg" alt="website_structure" width="580" height="243" /></p>
<p>A server is like a house because both store lots of things or information.  In a house rooms help us keep everything organized, while in a server information is organized in directories.</p>
<p><img class="aligncenter size-full wp-image-3014" title="" src="http://m5designstudio.com/wp-content/uploads/2013/01/website_structure2.jpg" alt="website_structure 2" width="580" height="243" /></p>
<p>For example, think about your room.  In your room, you have lots of different furniture and each piece has a purpose. On your desk you might have your computer, books and office supplies.  You can use a chest to store your  clothes  and on your nightstand you might keep your iPod &amp; cellphone.</p>
<p><img class="aligncenter size-full wp-image-3007" title="" src="http://m5designstudio.com/wp-content/uploads/2013/01/website_structure3.jpg" alt="website_structure 3" width="580" height="243" /></p>
<p>On a server directory you can store a website. Instead of furniture, the server uses sub-directories to store and organize all the media files (images, audio files, video, PDF&#8217;s, etc.) that belong to that website.</p>
<p>When you create websites you must always keep all the files organized  by relevant sub-directories.  It&#8217;s also important that you keep everything that belongs to a website together otherwise your links, images and scripts will not work.</p>
<p>A simple website structure looks like this:</p>
<p><img class="aligncenter size-full wp-image-3016" title="" src="http://m5designstudio.com/wp-content/uploads/2013/01/website_structure4.jpg" alt="website_structure 4" width="580" height="300" /></p>
<hr />
<h2> 2. HTML5 Structure</h2>
<p>A simple HTML5 website uses the following semantic/structural elements:</p>
<p><img class="aligncenter size-full wp-image-3020" title="" src="http://m5designstudio.com/wp-content/uploads/2013/01/HTML5_website_structure.jpg" alt="HTML5_website_structure" width="580" height="400" /></p>
<ul>
<li>&lt;header&gt;   &lt;/header&gt;   Defines a header for a document or section</li>
<li>&lt;nav&gt;   &lt;/nav&gt;            Defines navigation links</li>
<li>&lt;aside&gt;  &lt;/aside&gt;         Defines content aside from the page content<br />
Aside should only be used if its content is related to the content around the aside</li>
<li>&lt;section&gt;  &lt;/section&gt;    Defines a section in a document</li>
<li>&lt;article&gt;  &lt;/article&gt;       Defines an article</li>
<li>&lt;footer&gt;  &lt;/footer&gt;        Defines a footer for a document or section</li>
</ul>
<hr />
<h2>3. Creating Links</h2>
<p>The HTML &lt;a&gt; tag defines a hyperlink. A hyperlink (or link) can be  a word, group of words, or an image.</p>
<h3>a. Tips To Create Effective Links:</h3>
<ol>
<li>Do not use “click here”</li>
<li>Use descriptive words, so users can know where they are going after they click.</li>
<li>If you are linking to a file,  give the file format and size.</li>
<li>Do not use blank spaces. They render in the browser as  %20.</li>
</ol>
<h3>b. Relative Links Vs. Absolute Links</h3>
<p>Relative links are links within the website directory.  Relative links do not need to include the http protocol or the website&#8217;s domain name.</p>
<p>Example:</p>
<pre>&lt;a href="mypage.html"&gt;My Page&lt;/a&gt;</pre>
<p>Absolute links are links that go to other websites. Absolute links require the full URL (protocol, domain name, directory name and file name.</p>
<p>Example:</p>
<pre>&lt;a href="http://www.google.com/"&gt;Link to Google&lt;/a&gt;</pre>
<p>Always have absolute links open in a new page by adding the target attribute &#8220;_blank&#8221;.  The target attribute specifies where to open the linked document.</p>
<p>Example:</p>
<pre> &lt;a href="http://www.google.com/" target="_blank"&gt;Link to Google&lt;/a&gt;</pre>
<h3>c. Linking To A PDF File</h3>
<p>To link to a file within the website&#8217;s directory add the file path to the hyperlink reference and use &#8220;_blank&#8221; for the target attribute. Don&#8217;t forget to specify the file type and file size.</p>
<pre> &lt;a href="downloads/lesson2.pdf" target="_blank"&gt;Download Lesson 2 (PDF 94 KB)&lt;/a&gt;</pre>
<h3>d. Linking Within A Page</h3>
<p>You can create links within a page using ID&#8217;s.</p>
<p>1.  Give an ID to the section you want to link to</p>
<pre>&lt;p id="bio"&gt;My Bio&lt;/p&gt;</pre>
<p>2. Create the link to go to the ID. Please note that a pound sign must go before the ID name.</p>
<pre>&lt;a href="#bio"&gt;My Bio&lt;/a&gt;</pre>
<h3>e. Tooltips</h3>
<p>A tooltip is a message that displays when when the mouse hovers above a link. To create a tooltip add the title attribute to the &lt;a&gt; tag.</p>
<p>Example:</p>
<pre>&lt;a href="bio.html" title="learn more about me"&gt;My Bio&lt;/a&gt;</pre>
<h3>f. Linking To An Email</h3>
<p>To Link to an email use &#8220;mailto&#8221; on the hyperlink reference.</p>
<p>Example:</p>
<pre>&lt;a href="mailto:martha@gmail.com"&gt;martha@gmail.com&lt;/a&gt;</pre>
<hr />
<h2>4. Inserting An Image</h2>
<p>The &lt;img&gt; tag defines an image in an HTML page. The &lt;img&gt; tag has two required attributes: src and alt. The alt specifies an alternate text for an image.</p>
<pre>&lt;img src="images/my-image.png" alt="Description about my image" /&gt;</pre>
<p>The HTML tag &lt;figure&gt; specifies self-contained content, like illustrations, diagrams, photos, code listings, etc. If the image has a caption, you can use the tag &lt;figcaption&gt; to add a description.</p>
<pre>&lt;figure&gt;

&lt;img src="images/my-image.png" alt="Description about my image" /&gt;

&lt;figcaption&gt; This is the description of my image&lt;/figcaption&gt;

&lt;/figure&gt;</pre>
<hr />
<h2>5. Linking An Image</h2>
<pre>&lt;a href="http://www.website.com/" target="_blank"&gt;
 &lt;img src="images/my-image.png" alt="Description about my image" /&gt;&lt;/a&gt;</pre>
<hr />
<h2>6. Using HTML Special Characters</h2>
<p>Entities are used to implement reserved characters or to express characters that cannot easily be entered with the keyboard.</p>
<pre>&amp;      &amp;amp;
©      &amp;copy;
™      &amp;trade;
"      &amp;quot;
à      &amp;agrave;
Non Breaking Space   &amp;nbsp;</pre>
<p>HTML can render mathematical symbols, Greek characters, various arrows, technical symbols and shapes.</p>
<pre>«      &amp;laquo;
♠      &amp;spades;
♦      &amp;diams;
»      &amp;raquo;
♣      &amp;clubs;
→      &amp;rarr;
•      &amp;bull;
♥      &amp;hearts;</pre>
<p><strong>Please Note:</strong> Entity names are case sensitive.</p>
<ul>
<li><a href="http://www.w3schools.com/tags/ref_entities.asp" target="_blank">Complete list of HTML Special Characters</a></li>
<li><a href="http://www.w3schools.com/tags/ref_symbols.asp" target="_blank">Complete list of HTML Symbols</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://m5designstudio.com/2013/orlando-web-design/html5-for-beginners-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Orlando Web Design: HTML5 for Beginners Lesson 1</title>
		<link>http://m5designstudio.com/2013/orlando-web-design/html5-for-beginners/</link>
		<comments>http://m5designstudio.com/2013/orlando-web-design/html5-for-beginners/#comments</comments>
		<pubDate>Wed, 23 Jan 2013 19:27:00 +0000</pubDate>
		<dc:creator>M5 Design Studio</dc:creator>
				<category><![CDATA[orlando web design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[W3C]]></category>

		<guid isPermaLink="false">http://m5designstudio.com/?p=2969</guid>
		<description><![CDATA[Orlando Web Design &#38; Development What is HTML? HTML is the universal markup language for the Web. HTML stands for Hyper Text Markup Language. HTML specifications are set by the World Wide Web Consortium (W3C).  The W3C was created in &#8230; <a href="http://m5designstudio.com/2013/orlando-web-design/html5-for-beginners/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<h2><img class="aligncenter size-full wp-image-2985" title="" src="http://m5designstudio.com/wp-content/uploads/2013/01/html5-lesson1.jpg" alt="html5 lesson1" width="580" height="243" /></h2>
<h2>Orlando Web Design &amp; Development</h2>
<hr />
<h2>What is HTML?</h2>
<p>HTML is the universal markup language for the Web. HTML stands for Hyper Text Markup Language.</p>
<p>HTML specifications are set by the <a href="http://www.w3c.org" target="_blank">World Wide Web Consortium </a>(W3C).  The W3C was created in October 1994 by Tim Berners-Lee,  the Inventor of the Web.</p>
<p>The <a href="http://www.w3.org" target="_blank">World Wide Web Consortium</a> (W3C) is an international consortium that provides  web standards and guidelines for developers and designers to follow. Its mission is to  ensure long-term growth for the Web &amp; to make the Web accessible to all users (despite differences in culture, education, ability, resources, and physical limitations).</p>
<p>The WC3 also provides free tutorials in all web development technologies at <a href="http://www.w3schools.com" target="_blank">www.w3schools.com</a><span id="more-2969"></span></p>
<hr />
<h2>HTML5</h2>
<p>On January 22nd, 2008, W3C published a working draft for HTML5.</p>
<p>Some of the new features in HTML5 are functions for embedding audio, video, graphics, client-side data storage, and interactive documents.</p>
<p>HTML5 also contains new elements like &lt;nav&gt;, &lt;header&gt;, &lt;footer&gt;, and &lt;aside&gt;.</p>
<p>Would you like to see the power of HTML5? Checkout <a href="http://www.apple.com/html5/" target="_blank"> Apple&#8217;s Html 5 Showcase</a>.</p>
<hr />
<h2>Browser Support for HTML5</h2>
<p><img class="aligncenter size-full wp-image-2971" title="" src="http://m5designstudio.com/wp-content/uploads/2013/01/HTML5-Browser-support.png" alt="HTML5 Browser support" width="580" height="325" /></p>
<p>HTML5 is not yet an official standard, and no browsers have full HTML5 support. But all major browsers (Safari, Chrome, Firefox, Opera) continue to add new HTML5 features to their latest versions.</p>
<h3>Tools to check HTML5 Support:</h3>
<ul>
<li><a title="Can I Use" href="http://caniuse.com/#cats=HTML5" target="_blank">Can I Use HTML5?</a></li>
<li><a href="http://www.findmebyip.com/litmus/" target="_blank">Find me by IP Web Developer tools</a></li>
</ul>
<hr />
<h2>HTML5 &amp; Internet Explorer</h2>
<p>The html5shiv script tells Internet Explorer 8 and below to treat HTML5 tags as real tags. It enables styling of HTML5 elements in versions of Internet Explorer prior to version 9, which do not allow unknown elements to be styled without JavaScript.</p>
<p>To use the html5shiv insert the code below between the <tt>&lt;head&gt;</tt> elements (after or before your CSS):</p>
<pre><code>&lt;!--[if lt IE 9]&gt; &lt;script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"&gt; &lt;/script&gt; &lt;![endif]--&gt;</code></pre>
<hr />
<h2>Rules for writing HTML:</h2>
<ul>
<li>Always close your tags</li>
<li>Indent mark up</li>
<li> Use white space and comments to make code easier to read</li>
<li>Follow naming conventions: Lowercase and no spaces</li>
<li>Validate you code</li>
</ul>
<hr />
<h2>HTML5 Syntax</h2>
<h3>1. Two-sided tags Vs One-sided tags</h3>
<p>HTML Tags are the building blocks of html.</p>
<p><strong>a. TWO-SIDED TAGS: </strong></p>
<p>Two sided tags have content in-between the opening and closing tags.</p>
<p>&lt;element&gt; content&lt;/element&gt;</p>
<pre>&lt;p&gt; I love Web Design &lt;/p&gt;</pre>
<p><strong>a. ONE-SIDED TAGS: </strong></p>
<p>One-sided tags are empty HTML Elements.</p>
<p>Line break:</p>
<pre>&lt;br /&gt;</pre>
<p>Horizontal Rule:</p>
<pre>&lt;hr /&gt;</pre>
<hr />
<h3>2. Doctype:</h3>
<p>A doctype declaration refers to the rules for the markup language, so that the browsers render the content correctly. The &lt;!DOCTYPE&gt; tag does not have an end tag. The &lt;!DOCTYPE&gt; declaration is NOT case sensitive.</p>
<pre>&lt;!DOCTYPE HTML&gt;</pre>
<hr />
<h3>3. Basic structure of an HTML5 Document</h3>
<pre>&lt;!DOCTYPE HTML&gt;

 &lt;html&gt;

 &lt;head&gt;

 &lt;/head&gt;

 &lt;body&gt;
    Body Content
 &lt;/body&gt;

 &lt;/html&gt;</pre>
<h3>3. The &lt;head&gt; Section</h3>
<p>The &lt;head&gt; element contains information for the browser on how to render a document. It also provides important information for search engines.</p>
<p><strong>a. HTML Metadata</strong></p>
<p><img src="http://m5designstudio.com/wp-content/uploads/2012/10/wordpress_Google_results.jpg" alt="Metatags" width="580" height="88" /></p>
<ul>
<li>The &lt;meta&gt; tag provides information about the HTML document for the browser and search engines<strong></strong></li>
<li>Metadata will not be displayed on the page<strong></strong></li>
<li>Meta elements are typically used to specify page description, keywords, author of the document, last modified, and other metadata.<strong></strong></li>
<li>The &lt;meta&gt; tag always goes inside the head element.</li>
</ul>
<pre> &lt;meta name="description" content="Learn Web Design" /&gt;
 &lt;meta name="keywords" content="HTML,CSS,XML " /&gt;
 &lt;meta name="author" content="Joe Smith" /&gt;</pre>
<p align="left"><strong>b. Title tag</strong></p>
<p align="left">The title element:</p>
<ul>
<li>defines a title in the browser toolbar</li>
<li>provides a title for the page when it is added to favorites</li>
<li>displays a title for the page in search-engine results</li>
</ul>
<pre>&lt;title&gt;Title of the document&lt;/title&gt;</pre>
<p><strong>c. HTML Character Sets</strong></p>
<p>To display an HTML page correctly, the browser must know what character-set to use.</p>
<p><strong>ISO Character Sets:</strong> It is the International Standards Organization (ISO) that defines the standard character-sets for different alphabets/languages.</p>
<p>ISO-8859-1  Latin alphabet part 1<br />
North America, Western Europe, Latin America, the Caribbean, Canada, Africa</p>
<p><strong>The Unicode:</strong> UTF-8 is the preferred encoding for e-mail and web pages</p>
<pre>&lt;meta charset="UTF-8" /&gt;</pre>
<hr />
<h3>4. Comment Tag<strong>:<br />
</strong></h3>
<ul>
<li>The comment tag is used to insert a comment in the source code.</li>
<li>A comment will be ignored by the browser.</li>
</ul>
<pre>&lt;!-- This is a comment. Comments are not displayed in the browser--&gt;</pre>
<hr />
<h3>5. White Space<strong>:<br />
</strong></h3>
<ul>
<li>HTML ignores blank spaces, tabs and line breaks</li>
<li>Use white space to organize your code and make it easier to read</li>
</ul>
<p>To preserve spaces and line breaks you can use the Preformated Text Tag<strong><br />
</strong></p>
<pre>&lt;pre&gt;  Content Goes Here &lt;/pre&gt;</pre>
<hr />
<h3>6. The &lt;body&gt; Tag</h3>
<p>The &lt;body&gt; tag defines the document&#8217;s body. It contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc.</p>
<p><strong>a. Block Level Elements:</strong></p>
<ul>
<li>Reserve space</li>
<li>Start a new line in the document</li>
</ul>
<pre>&lt;h1&gt;This is a heading&lt;/h1&gt;</pre>
<p><strong>b. Inline Elements:<br />
</strong></p>
<ul>
<li>Don’t reserve Space</li>
<li>Can be placed within a level block element</li>
</ul>
<pre>&lt;p&gt;&lt;strong&gt;Strong text&lt;/strong&gt;&lt;/p&gt;</pre>
<hr />
<h3>7. HTML Headings</h3>
<p>HTML headings are defined with the &lt;h1&gt; to &lt;h6&gt; tags. Headings are used for the page&#8217;s titles, &lt;h1&gt; defines the most important heading &amp; &lt;h6&gt; defines the least important heading.</p>
<pre> &lt;h1&gt;This is a heading&lt;/h1&gt;
 &lt;h2&gt;This is a heading&lt;/h2&gt;
 &lt;h3&gt;This is a heading&lt;/h3&gt;</pre>
<hr />
<h3>8. HTML Ordered list</h3>
<p>The &lt;ol&gt; tag defines an ordered list. An ordered list can be numerical or alphabetical.</p>
<pre>&lt;ol&gt;
   &lt;li&gt;item 1 &lt;/li&gt;
   &lt;li&gt;Item 2&lt;/li&gt;
   &lt;li&gt;Item 3&lt;/li&gt;
 &lt;/ol&gt;</pre>
<hr />
<h3>9. HTML unordered list</h3>
<p>The &lt;ul&gt; tag defines an unordered (bulleted) list.</p>
<pre>&lt;ul&gt;
   &lt;li&gt;item 1 &lt;/li&gt;
   &lt;li&gt;Item 2&lt;/li&gt;
   &lt;li&gt;Item 3&lt;/li&gt;
 &lt;/ul&gt;</pre>
<hr />
<h3>10. Other HTML Tags</h3>
<p>Emphasized text</p>
<pre>&lt;em&gt;Emphasized text&lt;/em&gt;</pre>
<p>Bold text</p>
<pre>&lt;strong&gt;Strong text&lt;/strong&gt;</pre>
<p>Subscript text</p>
<pre>&lt;p&gt;This text contains &lt;sub&gt;subscript&lt;/sub&gt; text.&lt;/p&gt;</pre>
<p>Superscript text</p>
<pre>&lt;p&gt;This text contains &lt;sup&gt;superscript&lt;/sup&gt; text.&lt;/p&gt;</pre>
<p>Underlined text</p>
<pre>&lt;p&gt;Do not &lt;u&gt;underline&lt;/u&gt; text if it is not a hyperlink!&lt;/p&gt;</pre>
<p>Italic text</p>
<pre>&lt;i&gt;Italic text&lt;/i&gt;</pre>
<hr />
<h3>11. HTML Validation</h3>
<p>You can validate an HTML document  at:<a href=" http://validator.w3.org" target="_blank"> http://validator.w3.org</a></p>
<p>You can validate by URL, direct input or file upload.</p>
<hr />
<h3>12. HTML5 Resources:</h3>
<ul>
<li><a href="http://www.w3schools.com/html/default.asp" target="_blank">www.w3schools.com/html</a></li>
<li><a href="http://www.w3schools.com/html/html5_intro.asp" target="_blank">www.w3schools.com/html5</a></li>
<li><a href="http://www.html5rocks.com/en/resources" target="_blank">www.html5rocks.com</a></li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://m5designstudio.com/2013/orlando-web-design/html5-for-beginners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Email Notification &amp; Subscription Plugin</title>
		<link>http://m5designstudio.com/2012/wordpress-orlando/wordpress-email-notification-subscription-plugin/</link>
		<comments>http://m5designstudio.com/2012/wordpress-orlando/wordpress-email-notification-subscription-plugin/#comments</comments>
		<pubDate>Wed, 26 Dec 2012 08:00:11 +0000</pubDate>
		<dc:creator>M5 Design Studio</dc:creator>
				<category><![CDATA[wordpress orlando]]></category>

		<guid isPermaLink="false">http://m5designstudio.com/?p=2950</guid>
		<description><![CDATA[Orlando WordPress Websites: Post Notification by Email One of the most important tasks for a business is to maintain contact with its customers. Providing an email subscription option for your website is a great way to keep your customers up-to-date with informative &#8230; <a href="http://m5designstudio.com/2012/wordpress-orlando/wordpress-email-notification-subscription-plugin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-2962" title="" src="http://m5designstudio.com/wp-content/uploads/2012/12/wordpress-new-post-email.jpg" alt="wordpress new post email notification plugin" width="580" height="243" /></p>
<h2>Orlando WordPress Websites: Post Notification by Email</h2>
<p>One of the most important tasks for a business is to maintain contact with its customers. Providing an email subscription option for your website is a great way to keep your customers up-to-date with informative content. WordPress plugins make it easy to automatically notify all your users by email (with a daily or weekly newsletter) about your latest posts.</p>
<p>Below you can find some of the most popular email alerts &amp; notification solutions for WordPress.<span id="more-2950"></span></p>
<hr />
<h2>WordPress Email Post Notifications Plugins:</h2>
<h3><a href="http://wordpress.org/extend/plugins/subscribe2/" target="_blank">Subscribe2 Plugin</a></h3>
<p>Subscribe2 provides a comprehensive subscription management and email notification system for WordPress blogs that sends email notifications to a list of subscribers when you publish new content to your blog.</p>
<p>Email Notifications can be sent on a per-post basis or periodically in a Digest email. Additionally, certain categories can be excluded from inclusion in the notification and posts can be excluded on an individual basis by setting a custom field.</p>
<p>What is really great about this plugin is that if you manage user subscriptions with another plugin (for example, a membership plugin) you can still send email notifications to all registered users without requiring a separated subscription for email notifications.</p>
<p>Admins can also manually send email notices to subscribers, which is very handy when a notification is needed without having to create a post.</p>
<h3><a href="http://wordpress.org/extend/plugins/jetpack/" target="_blank">JetPack plugin</a></h3>
<p>JetPack makes available all the WordPress.com features on self-hosted WordPress installs. With JetPack visitors can choose to subscribe to new posts, or to subscribe to new comments on a post they have already commented on, so they can stay involved in the conversation.</p>
<p>Jetpack will email them letting them know when there’s a new post, so they can return and give you more traffic.</p>
<hr />
<h2>RSS-To-Email Notifications:</h2>
<p>RSS stands for “really simple syndication,” and it’s an easy way for people to follow updates to your blog without having to check in routinely to see if you’ve posted anything. It’s a great tool, but many people prefer to receive updates in their inboxes instead. MailChimp’s RSS-to-Email campaigns &amp; Feedburner RSS Email alerts provide an easy solution for automatically sending your new content via email.</p>
<h3><a href="https://accounts.google.com/ServiceLogin?service=feedburner&amp;continue=http%3A%2F%2Ffeedburner.google.com%2Ffb%2Fa%2Fmyfeeds" target="_blank">Feedburner Email Alerts</a></h3>
<ul>
<li><a href="http://wordpress.org/extend/plugins/search.php?q=feedburner&amp;sort=" target="_blank">WordPress Feedburner plugins</a></li>
</ul>
<h3><a href=" http://mailchimp.com/" target="_blank">MailChimp’s Rss to Email</a></h3>
<ul>
<li><a href="http://wordpress.org/extend/plugins/mailchimp/" target="_blank">WordPress Official MailChimp Plugin</a></li>
<li><a title="Mailchimp for bloggers" href="http://mailchimp.com/resources/guides/html/mailchimp-for-bloggers/" target="_blank">MailChimp for bloggers</a></li>
<li><a href="http://wordpress.org/extend/plugins/tags/mailchimp" target="_blank">WordPress MailChimp Plugins</a></li>
</ul>
<hr />
<p>WordPress Theme Development Orlando: <a href="http://m5designstudio.com/contact/" target="_blank">Contact me for a free quote!</a></p>
<ul>
<li><a title="Wordpress websites &amp; WordPress Themes in Orlando FL" href="http://m5designstudio.com/wordpress-websites-orlando-fl/">WordPress Websites &amp; WordPress Themes in Orlando FL</a></li>
<li><a href="http://m5designstudio.com/wordpress-development-orlando/">WordPress Development Orlando</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://m5designstudio.com/2012/wordpress-orlando/wordpress-email-notification-subscription-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
