<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://collaborate.extension.org/mediawiki/skins/common/feed.css?195"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://collaborate.extension.org/wiki/NETC08_session_1095?action=feed&amp;mode=raw</id>
		<title>Watching: NETC08 session 1095</title>
		<link rel="self" type="application/atom+xml" href="http://collaborate.extension.org/wiki/NETC08_session_1095?action=feed&amp;mode=raw"/>
		<link rel="alternate" type="text/html" href="http://collaborate.extension.org/wiki/NETC08_session_1095?action=feed&amp;amp;mode=raw"/>
		<updated>2009-11-22T19:11:20Z</updated>
		<subtitle>Wiki page as wiki</subtitle>
		<generator>MediaWiki 1.14.0</generator>

<entry>
<author><name>Contributors</name></author>
<id>http://collaborate.extension.org/wiki/NETC08_session_1095/11471</id>
<title>NETC08 session 1095</title>
<link rel="alternate" type="text/html" href="http://collaborate.extension.org/wiki/NETC08_session_1095" />
<updated>2008-04-30T14:13:55Z</updated>
<category term="NETC08 Session" />
<category term="Web Site Design" />
<content type="html">{{NETC08_sessions 
|sessionNumber=1095
|sessionFormat= Presentation
|sessionName=Style Your Site: An Advanced CSS Design Tutorial
|sessionTopic=Web Site Design
|sessionLevel=Advanced
|sessionLocation=Tanglewood
|timeSlot= Monday, 4:30 - 5:15 pm
|firstName=Ben
|lastName=MacNeill
|presentertitle=User Interface Designer
|affiliation=eXtension
|otherpresenters=
|sessionAbstract=Cascading Style Sheets (CSS) define the look of modern web pages. CSS is a very powerful stylesheet language that allows you to separate presentation from content. Learn advanced CSS techniques in this step-by-step coding demonstration that starts with an un-styled web page and ends up with a finished design. This presentation will also touch on accessibility, semantic markup, visual design and other site-design related issues. Please note, we'll cover advanced issues, but beginners are welcome. A little bit of HTML knowledge is helpful, but not required.

'''Code Samples'''
*Download the zipped files: [http://www.mediafire.com/?ujfj2ts10m2 &quot;Style your Site&quot; Code Samples].&lt;br /&gt;(the zipped file is hosted at Mediafire hosting service. After the page loads, you should see a link that says &quot;Click here to start download..&quot;.)
*If you can't get the files, please email me and I'll send you the zipped files. ben.macneill@extension.org
*I've also included the html and css below for convenience.
}}
[[Image:Style-your-site.png]]


== Session HTML ==

&lt;pre&gt;
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;
	&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;

&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;en&quot; lang=&quot;en&quot;&gt;

&lt;head&gt;
	&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;/&gt;
    &lt;title&gt;Style Your Site: An Advanced CSS Design Tutorial - NETC08 - Session 1095&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;styles-final.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
&lt;/head&gt;

&lt;body&gt;
    &lt;div class=&quot;wrapper&quot;&gt;
        &lt;div id=&quot;masthead&quot;&gt;
            &lt;a href=&quot;&quot;&gt;
                &lt;img alt=&quot;eXtension: More Mind Reach&quot; src=&quot;images/extension_logo_small.gif&quot; /&gt;
            &lt;/a&gt;
            &lt;br class=&quot;clear&quot;/&gt;
        &lt;/div&gt;
        &lt;div id=&quot;nav&quot;&gt;
            &lt;ul&gt;
                &lt;li&gt;&lt;a href=&quot;&quot; class=&quot;current&quot;&gt;About&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;&quot;&gt;Oranges&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;&quot;&gt;Apples&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;&quot;&gt;Pineapples&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;&quot;&gt;We have no Bananas Today&lt;/a&gt;&lt;/li&gt;
            &lt;/ul&gt;
        &lt;/div&gt;
        
        &lt;div id=&quot;content&quot;&gt;
            &lt;h1&gt;Style Your Site: An &lt;strike&gt;Advanced&lt;/strike&gt; CSS Design Tutorial&lt;/h1&gt;
            &lt;h2&gt;Session 1095&lt;/h2&gt;

            &lt;p&gt;Cascading Style Sheets (CSS) define the look of modern web pages. CSS is a very powerful stylesheet language that allows you to separate presentation from content. Learn advanced CSS techniques in this step-by-step coding demonstration that starts with an un-styled web page and ends up with a finished design.&lt;/p&gt;
            &lt;p&gt;This presentation will also touch on accessibility, semantic markup, visual design and other site-design related issues. Please note, we'll cover advanced issues, but beginners are welcome. A little bit of HTML knowledge is helpful, but not required.&lt;/p&gt;

            &lt;h2&gt;Details&lt;/h2&gt;
            &lt;ul&gt;
                &lt;li&gt;&lt;strong&gt;Session Name&lt;/strong&gt;: Style Your Site: An Advanced CSS Design Tutorial&lt;/li&gt;
                &lt;li&gt;&lt;strong&gt;Session Number&lt;/strong&gt;: 1095&lt;/li&gt;
                &lt;li&gt;&lt;strong&gt;Location&lt;/strong&gt;: Tanglewood&lt;/li&gt;
                &lt;li&gt;&lt;strong&gt;Day and Time&lt;/strong&gt;: Monday, 4:30 - 5:15 pm&lt;/li&gt;
                &lt;li&gt;&lt;strong&gt;Format&lt;/strong&gt;: Presentation&lt;/li&gt;
                &lt;li&gt;&lt;strong&gt;Topic&lt;/strong&gt;: Web Site Design&lt;/li&gt;
                &lt;li&gt;&lt;strong&gt;Level&lt;/strong&gt;: Advanced&lt;/li&gt;
            &lt;/ul&gt;
            
            &lt;h3&gt;More Links&lt;/h3&gt;
            &lt;ul&gt;
                &lt;li&gt;My del.icio.us CSS bookmarks: &lt;a href=&quot;http://del.icio.us/chillnc/css&quot;&gt;http://del.icio.us/chillnc/css&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;For testing: &lt;a href=&quot;http://chrispederick.com/work/web-developer/&quot;&gt;Web Developer toolbar&lt;/a&gt; by Chris Pederick (Firefox)&lt;/li&gt;
            &lt;/ul&gt;
            
            &lt;h3&gt;Contact Information&lt;/h3&gt;
            &lt;p&gt;Please email me if you have any other questions.&lt;/p&gt;
            &lt;p&gt;
                Ben MacNeill&lt;br /&gt;
                &lt;a href=&quot;mailto:ben.macneill@extension.org&quot;&gt;ben.macneill@extension.org&lt;/a&gt;&lt;br /&gt;
                User Interface Designer&lt;br /&gt;
                eXtension
            &lt;/p&gt;
        &lt;/div&gt;
        

        &lt;div id=&quot;footer&quot;&gt;
            &lt;p&gt;2008. No Rights Reserved.&lt;/p&gt;
        &lt;/div&gt;
        
    &lt;/div&gt;
&lt;/body&gt;

&lt;/html&gt;
&lt;/pre&gt;


== Session CSS (styles-final.css)==
&lt;pre&gt;
/* reset all margins, padding, and borders.
(Because every browser has slightly different default values, and we don't want any surprises)
also see http://developer.yahoo.com/yui/reset/  */
* {margin: 0; padding: 0; }
img { border: 0; }

/* put margins back on certain elements */
h1, h2, h3, h4, h5, h6, p, ul {margin: 0 0 1em;}

.wrapper {
    width:800px;
/*    border: 1px solid red;*/
    margin:0 auto;
    background: #ddd;
    border-left:4px solid #fff;
    border-right:4px solid #fff;
    }

#masthead {
/*    border: 1px solid green;*/
    border-bottom:2px solid #ccc;
    padding: 1em 1em 2em;
    background: #ddd url(images/header_bg.png) repeat-x left bottom;
    }
    
#content {
/*    border: 1px solid blue;*/
    width:559px;
    float:right;
    background: #fff;
    padding:20px;    
    border-left: 1px solid #1e50a9;
    }
    
#nav {
/*    border: 1px solid black;*/
    width:200px; 
    float:left;    
    }
    
#footer {
/*    border: 1px solid blue;*/
    clear:both;
    padding:2em 0 1em;
    text-align:center;
    border-top: 1px solid #1e50a9;
    background: #fff url(images/footer_fade.gif) repeat-x top center;
    color:#999;
}

#masthead a {
    float:right;
    font-size:3em;
}

.clear {clear:both;}


#nav ul {list-style:none; margin:0; padding:0;}
#nav ul li {margin:0;}
#nav ul li a {
/*    border: 1px solid red;*/
    display:block;
    padding: 1em 20px;
    color:#fff;
    font-size:1.2em;
    line-height: 1.2em;
    text-decoration:none;
}

/* nav link rollover */
#nav ul li a:link,
#nav ul li a:visited    {background: #5294cc url(images/side_nav.png) repeat-y -200px bottom;}
#nav ul li a:hover      {background: #5294cc url(images/side_nav.png) repeat-y -400px bottom ;}
#nav ul li a.current    {background: #5294cc url(images/side_nav.png) repeat-y 0 bottom;}

/* the font-size default for all modern browsers is 16pt. multiple by 62.5% to reset font size to 1em.
1em is now equal to 10pt. 1.2em is 12pt, 1.6em is 16pt, etc. (unless nested) */
body {font-size: 62.5%;}

body {
    font-family: &quot;Arial&quot;, &quot;sans-serif&quot;;
    background: #003377;
    color: #333;
    background: #1d50a9 url(images/ask_footer.png) repeat-x top center;
}

/* set default text sizes */
h1, h2, h3 {
    color: #003073;
    font-weight:normal;
}

h1 { font-size: 2.4em; color: #6c0081; background:#fbebff; }
h2 { font-size: 2.2em;}
h3 { font-size: 1.8em;}




p, li {
    margin: .5em 0 2em;
    font-size: 1.3em;
    line-height: 1.4em;
}

ul {
    margin:1em 3em 2.5em;
    }
ul li {
    margin: 0 0 .75em;
    padding:0;
    }
&lt;/pre&gt;

[[Category: NETC08 Session]]
[[Category: Web Site Design]]</content>
</entry>
	</feed>