<?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>iiuniveadds blog</title>
	<atom:link href="http://iiuniveadds.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://iiuniveadds.com/blog</link>
	<description>Clarity in Cognizant</description>
	<lastBuildDate>Mon, 11 Jan 2010 06:12:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS Menus</title>
		<link>http://iiuniveadds.com/blog/?p=1482</link>
		<comments>http://iiuniveadds.com/blog/?p=1482#comments</comments>
		<pubDate>Mon, 11 Jan 2010 06:12:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://iiuniveadds.com/blog/?p=1482</guid>
		<description><![CDATA[This uses just CSS 2 to turn nested lists into a working menu and does not use any JavaScript (except in IE 5.5-6 on windows where I use the proprietary DHTML behaviours, because its CSS handling is not good enough to work this menu without script)
This works in Mozilla 1+, Netscape 7+, Opera 7+, Safari [...]]]></description>
			<content:encoded><![CDATA[<p>This uses just CSS 2 to turn nested lists into a working menu and does not use any JavaScript (except in IE 5.5-6 on windows where I use the proprietary DHTML behaviours, because its CSS handling is not good enough to work this menu without script)</p>
<p>This works in Mozilla 1+, Netscape 7+, Opera 7+, Safari build 60+, OmniWeb 4.5+, Konqueror 3.2+, iCab 3+ and IE 5.5+ on Windows (using DHTML behaviours)</p>
<p><span id="more-1482"></span><br />
This produces a styled nested list in IE 4, Netscape 4, OmniWeb 4.2-, iCab 2- and WebTV<br />
This does not function as a menu or a complete list in Netscape 6, Opera 6-, Konqueror 3.0-, Konqueror 3.1 (bug), Internet Explorer on Mac, ICEbrowser, Escape and Clue browser<br />
If you are interested in making it horizontal, try CrazyTB&#8217;s menu. It does not work in IE (IE&#8217;s CSS sucks, so this is nothing new), but it does work very well in the others.<br />
This requires browsers to be able to understand the &gt; selector, to support :hover over li elements, to be able to correctly position li elements relatively, and ul elements absolutely, to support the display style, and to be able to change display when :hover is detected. Alternatively, a conditional comment and DHTML behaviours make it work in IE 5.5-6. See below for all the CSS used to make it work &#8211; substantially smaller than the equivalent JavaScript.<br />
It does not need ANY JavaScript knowledge to set it up. Browsers that do not understand it will simply show a nested list so that the menu could still be used &#8211; with JavaScript menus, these browsers would show nothing. With many browsers, the menu will work, even if the user has disabled JavaScript. You can make any nested list into a menu simply by making its class &#8216;makeMenu&#8217;.</p>
<p>To position this menu elsewhere on the page, all you need to do is make ul.makeMenu positioned using CSS positioning, and changing the colours is easy using the stylesheets and the HTC file. To make the menu open to the left instead of to the right, just change the 78px to -78px and 80px to -80px.</p>
<p>&lt;style type=&#8221;text/css&#8221;&gt;<br />
ul.makeMenu, ul.makeMenu ul {<br />
  width: 80px;                 /* sets the size of the menu blocks */<br />
  border: 1px solid #000;      /* puts a black border around the menu blocks */<br />
  background-color: #8aa;      /* makes the menu blocks mint green &#8211; a bg-color MUST be included for IE to work properly! */<br />
  padding-left: 0px;           /* stops the usual indent from ul */<br />
  cursor: default;             /* gives an arrow cursor */<br />
  margin-left: 0px;            /* Opera 7 final&#8217;s margin and margin-box model cause problems */<br />
}<br />
ul.makeMenu li {<br />
  list-style-type: none;       /* removes the bullet points */<br />
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */<br />
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item<br />
                                  the lack of offset makes these appear normal, but it will make a difference<br />
                                  to the absolutely positioned child blocks */<br />
  color: #fff;                 /* sets the default font colour to white */<br />
}<br />
ul.makeMenu li &gt; ul {          /* using the &gt; selector prevents many lesser browsers (and IE &#8211; see below) hiding child ULs */<br />
  display: none;               /* hides child menu blocks &#8211; one of the most important declarations */<br />
  position: absolute;          /* make child blocks hover without leaving space for them */<br />
  top: 2px;                    /* position slightly lower than the parent menu item */<br />
  left: 80px;                  /* this must not be more than the width of the parent block, or the mouse will<br />
                                  have to move off the element to move between blocks, and the menu will close */<br />
}<br />
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {<br />
  background-color: #ffa;      /* gives the active menu items a yellow background */<br />
  color: #000;                 /* makes the active menu item text black */<br />
}<br />
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */<br />
  display: block;              /* specially to go with the className changes in the behaviour file */<br />
}<br />
ul.makeMenu li:hover &gt; ul {    /* one of the most important declarations &#8211; the browser must detect hovering over arbitrary elements<br />
                                  the &gt; targets only the child ul, not any child uls of that child ul */<br />
  display: block;              /* makes the child block visible &#8211; one of the most important declarations */<br />
}<br />
/* and some link styles */<br />
ul.makeMenu li a { color: #fff; display: block; width: 100%; text-decoration: underline; }<br />
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #000; }<br />
ul.makeMenu li:hover &gt; a { color: #000; } /* supports links in branch headings &#8211; should not be display: block; */<br />
&lt;/style&gt;<br />
&lt;!&#8211;[if gt IE 5.0]&gt;&lt;![if lt IE 7]&gt;<br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
/* that IE 5+ conditional comment makes this only visible in IE 5+ */<br />
ul.makeMenu li {  /* the behaviour to mimic the li:hover rules in IE 5+ */<br />
  behavior: url( IEmen.htc );<br />
}<br />
ul.makeMenu ul {  /* copy of above declaration without the &gt; selector, except left position is wrong */<br />
  display: none; position: absolute; top: 2px; left: 78px;<br />
}<br />
&lt;/style&gt;<br />
&lt;![endif]&gt;&lt;![endif]&#8211;&gt;</p>
<p>&lt;ul class=&#8221;makeMenu&#8221;&gt;<br />
  &lt;li&gt;&gt;&gt; Lips<br />
    &lt;ul&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;cat.html&#8221;&gt;Cat&lt;/a&gt;&lt;/li&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;rabbit.html&#8221;&gt;Rabbit&lt;/a&gt;&lt;/li&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;dingo.html&#8221;&gt;Dingo&lt;/a&gt;&lt;/li&gt;<br />
    &lt;/ul&gt;<br />
  &lt;/li&gt;<br />
  &lt;li&gt;&gt;&gt; Ears<br />
    &lt;ul&gt;<br />
      &lt;li&gt;Elephant &gt;&gt;<br />
        &lt;ul&gt;<br />
          &lt;li&gt;&lt;a href=&#8221;indian.html&#8221;&gt;Indian&lt;/a&gt;&lt;/li&gt;<br />
          &lt;li&gt;&lt;a href=&#8221;african.html&#8221;&gt;African&lt;/a&gt;&lt;/li&gt;<br />
        &lt;/ul&gt;<br />
      &lt;/li&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;monkey.html&#8221;&gt;Monkey&lt;/a&gt;&lt;/li&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;dog.html&#8221;&gt;Dog&lt;/a&gt;&lt;/li&gt;<br />
    &lt;/ul&gt;<br />
  &lt;/li&gt;<br />
  &lt;li&gt;&gt;&gt; Eyes<br />
    &lt;ul&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;pig.html&#8221;&gt;Pig&lt;/a&gt;&lt;/li&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;bird.html&#8221;&gt;Bird&lt;/a&gt;&lt;/li&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;worm.html&#8221;&gt;Worm&lt;/a&gt;&lt;/li&gt;<br />
    &lt;/ul&gt;<br />
  &lt;/li&gt;<br />
  &lt;li&gt;&lt;a href=&#8221;accessibleLink.html&#8221;&gt;&gt;&gt; Noses&lt;/a&gt;<br />
    &lt;ul&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;bat.html&#8221;&gt;Bat&lt;/a&gt;&lt;/li&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;fish.html&#8221;&gt;Fish&lt;/a&gt;&lt;/li&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;panther.html&#8221;&gt;Panther&lt;/a&gt;&lt;/li&gt;<br />
    &lt;/ul&gt;<br />
  &lt;/li&gt;<br />
&lt;/ul&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://iiuniveadds.com/blog/?feed=rss2&amp;p=1482</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How does CSS work?</title>
		<link>http://iiuniveadds.com/blog/?p=1488</link>
		<comments>http://iiuniveadds.com/blog/?p=1488#comments</comments>
		<pubDate>Thu, 06 Aug 2009 07:22:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://iiuniveadds.com/blog/?p=1488</guid>
		<description><![CDATA[In this lesson you will learn how to make your first style sheet. You will get to know about the basic CSS model and which codes are necessary to use CSS in an HTML document.
Many of the properties used in Cascading Style Sheets (CSS) are similar to those of HTML. Thus, if you are used [...]]]></description>
			<content:encoded><![CDATA[<p>In this lesson you will learn how to make your first style sheet. You will get to know about the basic CSS model and which codes are necessary to use CSS in an HTML document.</p>
<p>Many of the properties used in Cascading Style Sheets (CSS) are similar to those of HTML. Thus, if you are used to use HTML for layout, you will most likely recognize many of the codes. Let us look at a concrete example.<br />
The basic CSS syntax</p>
<p>Let&#8217;s say we want a nice red color as the background of a webpage:</p>
<p>Using HTML we could have done it like this:</p>
<p><body bgcolor="#FF0000"></p>
<p>With CSS the same result can be achieved like this:</p>
<p>body {background-color: #FF0000;}</p>
<p>As you will note, the codes are more or less identical for HTML and CSS. The above example also shows you the fundamental CSS model:</p>
<p><img src="http://iiuniveadds.com/blog/wp-content/uploads/2009/08/figure001-250x150.png" alt="figure001" title="figure001" width="250" height="150" class="alignleft size-thumbnail wp-image-1489" /><span id="more-1488"></span><br />
Applying CSS to an HTML document</p>
<p>There are three ways you can apply CSS to an HTML document. These methods are all outlined below. We recommend that you focus on the third method i.e. external.<br />
Method 1: In-line (the attribute style)</p>
<p>One way to apply CSS to HTML is by using the HTML attribute style. Building on the above example with the red background color, it can be applied like this:</p>
<p><html><br />
  <head></p>
<p>  </head><br />
  <body style="background-color: #FF0000;"></p>
<p>This is a red page</p>
<p>  </body><br />
</html></p>
<p>Method 2: Internal (the tag style)</p>
<p>Another way is to include the CSS codes using the HTML tag<br />
<style>. For example like this:</p>
<p><html>
  <head></p>
<style type="text/css">
      body {background-color: #FF0000;}
    </style>
<p>  </head><br />
  <body></p>
<p>This is a red page</p>
<p>  </body><br />
</html></p>
<p>Method 3: External (link to a style sheet)</p>
<p>The recommended method is to link to a so-called external style sheet. Throughout this tutorial we will use this method in all our examples.</p>
<p>An external style sheet is simply a text file with the extension .css. Like any other file, you can place the style sheet on your web server or hard disk.</p>
<p>For example, let's say that your style sheet is named style.css and is located in a folder named style. The situation can be illustrated like this:<br />
<img src="http://iiuniveadds.com/blog/wp-content/uploads/2009/08/figure002.png" alt="figure002" title="figure002" width="118" height="92" class="alignleft size-full wp-image-1490" /></p>
<p>The trick is to create a link from the HTML document (default.htm) to the style sheet (style.css). Such link can be created with one line of HTML code:</p>
<link rel="stylesheet" type="text/css" href="style/style.css" />
<p>Notice how the path to our style sheet is indicated using the attribute href.</p>
<p>The line of code must be inserted in the header section of the HTML code i.e. between the <head> and </head> tags. Like this:</p>
<p><html><br />
  <head></p>
<link rel="stylesheet" type="text/css" href="style/style.css" />
  </head><br />
  <body><br />
  ...</p>
<p>This link tells the browser that it should use the layout from the CSS file when displaying the HTML file.<br />
The really smart thing is that several HTML documents can be linked to the same style sheet. In other words, one CSS file can be used to control the layout of many HTML documents.<br />
<img src="http://iiuniveadds.com/blog/wp-content/uploads/2009/08/figure003-250x150.png" alt="figure003" title="figure003" width="250" height="150" class="alignleft size-thumbnail wp-image-1491" /></p>
]]></content:encoded>
			<wfw:commentRss>http://iiuniveadds.com/blog/?feed=rss2&amp;p=1488</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Menus</title>
		<link>http://iiuniveadds.com/blog/?p=1483</link>
		<comments>http://iiuniveadds.com/blog/?p=1483#comments</comments>
		<pubDate>Thu, 06 Aug 2009 06:21:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://iiuniveadds.com/blog/?p=1483</guid>
		<description><![CDATA[This uses just CSS 2 to turn nested lists into a working menu and does not use any JavaScript (except in IE 5.5-6 on windows where I use the proprietary DHTML behaviours, because its CSS handling is not good enough to work this menu without script)
This works in Mozilla 1+, Netscape 7+, Opera 7+, Safari [...]]]></description>
			<content:encoded><![CDATA[<p>This uses just CSS 2 to turn nested lists into a working menu and does not use any JavaScript (except in IE 5.5-6 on windows where I use the proprietary DHTML behaviours, because its CSS handling is not good enough to work this menu without script)</p>
<p>This works in Mozilla 1+, Netscape 7+, Opera 7+, Safari build 60+, OmniWeb 4.5+, Konqueror 3.2+, iCab 3+ and IE 5.5+ on Windows (using DHTML behaviours)</p>
<p><img src="http://iiuniveadds.com/blog/wp-content/uploads/2009/08/css-dhtml-menu-250x150.png" alt="css-dhtml-menu" title="css-dhtml-menu" width="250" height="150" class="alignleft size-thumbnail wp-image-1484" /><br />
<span id="more-1483"></span><br />
This produces a styled nested list in IE 4, Netscape 4, OmniWeb 4.2-, iCab 2- and WebTV<br />
This does not function as a menu or a complete list in Netscape 6, Opera 6-, Konqueror 3.0-, Konqueror 3.1 (bug), Internet Explorer on Mac, ICEbrowser, Escape and Clue browser<br />
If you are interested in making it horizontal, try CrazyTB&#8217;s menu. It does not work in IE (IE&#8217;s CSS sucks, so this is nothing new), but it does work very well in the others.<br />
This requires browsers to be able to understand the &gt; selector, to support :hover over li elements, to be able to correctly position li elements relatively, and ul elements absolutely, to support the display style, and to be able to change display when :hover is detected. Alternatively, a conditional comment and DHTML behaviours make it work in IE 5.5-6. See below for all the CSS used to make it work &#8211; substantially smaller than the equivalent JavaScript.<br />
It does not need ANY JavaScript knowledge to set it up. Browsers that do not understand it will simply show a nested list so that the menu could still be used &#8211; with JavaScript menus, these browsers would show nothing. With many browsers, the menu will work, even if the user has disabled JavaScript. You can make any nested list into a menu simply by making its class &#8216;makeMenu&#8217;.</p>
<p>To position this menu elsewhere on the page, all you need to do is make ul.makeMenu positioned using CSS positioning, and changing the colours is easy using the stylesheets and the HTC file. To make the menu open to the left instead of to the right, just change the 78px to -78px and 80px to -80px.</p>
<p>&lt;style type=&#8221;text/css&#8221;&gt;<br />
ul.makeMenu, ul.makeMenu ul {<br />
  width: 80px;                 /* sets the size of the menu blocks */<br />
  border: 1px solid #000;      /* puts a black border around the menu blocks */<br />
  background-color: #8aa;      /* makes the menu blocks mint green &#8211; a bg-color MUST be included for IE to work properly! */<br />
  padding-left: 0px;           /* stops the usual indent from ul */<br />
  cursor: default;             /* gives an arrow cursor */<br />
  margin-left: 0px;            /* Opera 7 final&#8217;s margin and margin-box model cause problems */<br />
}<br />
ul.makeMenu li {<br />
  list-style-type: none;       /* removes the bullet points */<br />
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */<br />
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item<br />
                                  the lack of offset makes these appear normal, but it will make a difference<br />
                                  to the absolutely positioned child blocks */<br />
  color: #fff;                 /* sets the default font colour to white */<br />
}<br />
ul.makeMenu li &gt; ul {          /* using the &gt; selector prevents many lesser browsers (and IE &#8211; see below) hiding child ULs */<br />
  display: none;               /* hides child menu blocks &#8211; one of the most important declarations */<br />
  position: absolute;          /* make child blocks hover without leaving space for them */<br />
  top: 2px;                    /* position slightly lower than the parent menu item */<br />
  left: 80px;                  /* this must not be more than the width of the parent block, or the mouse will<br />
                                  have to move off the element to move between blocks, and the menu will close */<br />
}<br />
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {<br />
  background-color: #ffa;      /* gives the active menu items a yellow background */<br />
  color: #000;                 /* makes the active menu item text black */<br />
}<br />
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */<br />
  display: block;              /* specially to go with the className changes in the behaviour file */<br />
}<br />
ul.makeMenu li:hover &gt; ul {    /* one of the most important declarations &#8211; the browser must detect hovering over arbitrary elements<br />
                                  the &gt; targets only the child ul, not any child uls of that child ul */<br />
  display: block;              /* makes the child block visible &#8211; one of the most important declarations */<br />
}<br />
/* and some link styles */<br />
ul.makeMenu li a { color: #fff; display: block; width: 100%; text-decoration: underline; }<br />
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #000; }<br />
ul.makeMenu li:hover &gt; a { color: #000; } /* supports links in branch headings &#8211; should not be display: block; */<br />
&lt;/style&gt;<br />
&lt;!&#8211;[if gt IE 5.0]&gt;&lt;![if lt IE 7]&gt;<br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
/* that IE 5+ conditional comment makes this only visible in IE 5+ */<br />
ul.makeMenu li {  /* the behaviour to mimic the li:hover rules in IE 5+ */<br />
  behavior: url( IEmen.htc );<br />
}<br />
ul.makeMenu ul {  /* copy of above declaration without the &gt; selector, except left position is wrong */<br />
  display: none; position: absolute; top: 2px; left: 78px;<br />
}<br />
&lt;/style&gt;<br />
&lt;![endif]&gt;&lt;![endif]&#8211;&gt;</p>
<p>&lt;ul class=&#8221;makeMenu&#8221;&gt;<br />
  &lt;li&gt;&gt;&gt; Lips<br />
    &lt;ul&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;cat.html&#8221;&gt;Cat&lt;/a&gt;&lt;/li&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;rabbit.html&#8221;&gt;Rabbit&lt;/a&gt;&lt;/li&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;dingo.html&#8221;&gt;Dingo&lt;/a&gt;&lt;/li&gt;<br />
    &lt;/ul&gt;<br />
  &lt;/li&gt;<br />
  &lt;li&gt;&gt;&gt; Ears<br />
    &lt;ul&gt;<br />
      &lt;li&gt;Elephant &gt;&gt;<br />
        &lt;ul&gt;<br />
          &lt;li&gt;&lt;a href=&#8221;indian.html&#8221;&gt;Indian&lt;/a&gt;&lt;/li&gt;<br />
          &lt;li&gt;&lt;a href=&#8221;african.html&#8221;&gt;African&lt;/a&gt;&lt;/li&gt;<br />
        &lt;/ul&gt;<br />
      &lt;/li&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;monkey.html&#8221;&gt;Monkey&lt;/a&gt;&lt;/li&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;dog.html&#8221;&gt;Dog&lt;/a&gt;&lt;/li&gt;<br />
    &lt;/ul&gt;<br />
  &lt;/li&gt;<br />
  &lt;li&gt;&gt;&gt; Eyes<br />
    &lt;ul&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;pig.html&#8221;&gt;Pig&lt;/a&gt;&lt;/li&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;bird.html&#8221;&gt;Bird&lt;/a&gt;&lt;/li&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;worm.html&#8221;&gt;Worm&lt;/a&gt;&lt;/li&gt;<br />
    &lt;/ul&gt;<br />
  &lt;/li&gt;<br />
  &lt;li&gt;&lt;a href=&#8221;accessibleLink.html&#8221;&gt;&gt;&gt; Noses&lt;/a&gt;<br />
    &lt;ul&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;bat.html&#8221;&gt;Bat&lt;/a&gt;&lt;/li&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;fish.html&#8221;&gt;Fish&lt;/a&gt;&lt;/li&gt;<br />
      &lt;li&gt;&lt;a href=&#8221;panther.html&#8221;&gt;Panther&lt;/a&gt;&lt;/li&gt;<br />
    &lt;/ul&gt;<br />
  &lt;/li&gt;<br />
&lt;/ul&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://iiuniveadds.com/blog/?feed=rss2&amp;p=1483</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meta tag tips</title>
		<link>http://iiuniveadds.com/blog/?p=922</link>
		<comments>http://iiuniveadds.com/blog/?p=922#comments</comments>
		<pubDate>Sat, 25 Jul 2009 05:09:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://iiuniveadds.com/blog/?p=922</guid>
		<description><![CDATA[What is a Meta Tag?
Well-formatted Meta Tags help your website&#8217;s ranking in the search engines. Search engines crawl your
Meta Tags as part of their indexing algorithm, using them as a snippets of your website content, as well as
being guided on how to crawl between your website pages to assure complete and thorough indexing.

What Meta Tags [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is a Meta Tag?</strong><br />
Well-formatted Meta Tags help your website&#8217;s ranking in the search engines. Search engines crawl your<br />
Meta Tags as part of their indexing algorithm, using them as a snippets of your website content, as well as<br />
being guided on how to crawl between your website pages to assure complete and thorough indexing.<br />
<img class="alignleft size-full wp-image-925" title="How-to-Create-Meta-Tags" src="http://iiuniveadds.com/blog/wp-content/uploads/2009/07/How-to-Create-Meta-Tags.jpg" alt="How-to-Create-Meta-Tags" width="200" height="150" /><span id="more-922"></span><br />
<strong>What Meta Tags should I add to my web site?</strong><br />
<strong>Title:</strong><br />
The title is one of the most important parts of your website to evaluate, as it is the most frequently<br />
searched component by search engines. It should state exactly what your site is about and include your<br />
most important keywords. A good Title is one that briefly describes the site in 50-80 characters.<br />
<strong>Keywords:</strong><br />
The Meta Tag Keywords should be those words or phrases that you think people will use when trying to<br />
look for a site like yours on search engines. The right keywords for your website should be specific enough<br />
to describe your website&#8217;s focus, yet general enough for potential customers to use as search criteria with<br />
search engines. The effective number of keywords is 10-25. Each keyword should be composed of one to 4<br />
words.<br />
<strong>Description:</strong><br />
Your website description should be a summary of the content of your site. This description should contain<br />
some of the keywords and should avoid marketing jargon. A good Description is composed of a few<br />
sentences that best describe the site (up to a maximum of 250 characters).</p>
]]></content:encoded>
			<wfw:commentRss>http://iiuniveadds.com/blog/?feed=rss2&amp;p=922</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Developing a Simple Website in Flash</title>
		<link>http://iiuniveadds.com/blog/?p=913</link>
		<comments>http://iiuniveadds.com/blog/?p=913#comments</comments>
		<pubDate>Sat, 25 Jul 2009 04:51:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://iiuniveadds.com/blog/?p=913</guid>
		<description><![CDATA[The time has come to develop your own websites. Using the tip sheet below, make a website that has five buttons, includes an animation (tween), has five working pages with a working scroll bar, and includes pictures. Be creative with your pictures. Have them load with your pages. (Hint: treat them like a page.) REMEMBER [...]]]></description>
			<content:encoded><![CDATA[<p>The time has come to develop your own websites. Using the tip sheet below, make a website that has five buttons, includes an animation (tween), has five working pages with a working scroll bar, and includes pictures. Be creative with your pictures. Have them load with your pages. (Hint: treat them like a page.) REMEMBER &#8211; Use a Flash<br />
<strong>Actionscript 2.0 file to begin!</strong><br />
Things to do:</p>
<ul>
<li> Make Background 20 %</li>
<li> Set stage dimensions in Flash 5 %</li>
<li> Import Background 5 %</li>
<li> Make Buttons 20 %</li>
<li> Make Pages – Movie Clips 20 %</li>
</ul>
<p><img src="http://iiuniveadds.com/blog/wp-content/uploads/2009/07/Untitled-16.png" alt="Untitled-1" title="Untitled-1" width="300" height="200" class="alignleft size-full wp-image-929" /><br />
<strong> Insert Pictures</strong><span id="more-913"></span></p>
<ul>
<li> Set frame labels in main timeline for pages 5 %</li>
<li> Apply actions 25 %</li>
<li>Make Background in Photoshop</li>
<li> File – New – Set Size pixels</li>
<li> When finished – File – Save for Web</li>
<li>o Save file as a .png (png 24) or a .jpg – USE JPG if POSSIBLE –</li>
<li>smaller file size!!!</li>
<li>Set Stage Dimensions in Flash</li>
<li> Modify – Document (Set stage dimension a little larger than your</li>
<li>background)</li>
<li> Change frame rate to 24 fps.</li>
<li> Choose stage color</li>
</ul>
<p><strong>Import Background into Flash</strong></p>
<ul>
<li><strong> </strong>File – Import to Library</li>
<li> Insert New Symbol – Graphic</li>
</ul>
<p><strong>Drag background picture into new symbol<br />
o Align to Stage (Alt – K)</strong></p>
<ul>
<li> Goto main timeline – Insert new layer – Background</li>
<li> Drag background symbol onto stage in Background Layer.</li>
</ul>
<p><strong>Make Buttons in Flash</strong><br />
- Insert &#8211; New Symbol – Button – (Name it)<br />
- Inside the button symbol – Be sure to have 2 layers – One for text and one<br />
for the shape<br />
Fundamentals of Web Design<br />
Semester Exam<br />
Mr. Samanich<br />
- Change the Button and Text accordingly – Remember to insert keyframes.<br />
Make Pages – Movie Clips<br />
- Insert – New Symbol – Movie Clip – (Name it your page name)<br />
- Inside the new page symbol, be sure to have three layers as well. One for<br />
the text on the page, one for the shape, and one for the image of the page.<br />
- Using the rectangle tool, draw your page. Be sure you are on the correct<br />
layer.<br />
- Go to the text layer and select the Text tool. Be sure to change your text<br />
box to a dynamic text box so that we can add a scroll bar later.<br />
- Using your text tool, draw the shape of your text box.<br />
- Go to components and drag a scroll bar into your text box.<br />
- Type your information. – (Be sure to click the render as html button &lt;&gt;)<br />
- Drag an instance of your image onto the stage from the library and resize<br />
if necessary<br />
- To make more pages – go into the library and duplicate the page movie<br />
clips. Rename them, and change the type inside of each new movie clip.<br />
Adding Pages to the Main Stage<br />
- Insert a layer called Pages<br />
- Go to the desired frame (frame 10) and place a blank keyframe (F7).<br />
- Open your library (Alt + L) and drag an instance onto the stage – position<br />
it where you want it.<br />
- To add the next page, add a blank keyframe (F7) in the next desired frame<br />
(frame 20). Repeat the above process.<br />
Apply Actions to make it all work!<br />
- Remember – Actions can go in one of two places!! Inside a frame (frame<br />
action) or on top of a button (object action)<br />
- Insert a new layer – name it actions. Place a “stop” action in Frame 1<br />
(Start + F9) Double click on the stop action.<br />
- On the main stage, select the first button with the Arrow Tool<br />
- Press (Start + F9) to bring up your actions. Under the Timeline Control<br />
actions book, double click on the goto action. Select the goto and stop<br />
radio button. Change frame number to frame label and select the correct<br />
frame label below.<br />
-Test the movie – Alt + Enter</p>
]]></content:encoded>
			<wfw:commentRss>http://iiuniveadds.com/blog/?feed=rss2&amp;p=913</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wireless LAN?</title>
		<link>http://iiuniveadds.com/blog/?p=825</link>
		<comments>http://iiuniveadds.com/blog/?p=825#comments</comments>
		<pubDate>Fri, 24 Jul 2009 09:21:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Network]]></category>
		<category><![CDATA[New technology]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://iiuniveadds.com/blog/?p=825</guid>
		<description><![CDATA[A wireless local area network (LAN) is a flexible data communications system implemented as an extension to, or as an alternative for, a wired LAN. Using radio frequency (RF) technology, wireless LANs transmit and receive data
over the air, minimizing the need for wired connections. Thus, wireless LANs combine data connectivity with user mobility.

Wireless LANs have [...]]]></description>
			<content:encoded><![CDATA[<p>A wireless local area network (LAN) is a flexible data communications system implemented as an extension to, or as an alternative for, a wired LAN. Using radio frequency (RF) technology, wireless LANs transmit and receive data<br />
over the air, minimizing the need for wired connections. Thus, wireless LANs combine data connectivity with user mobility.</p>
<p><img src="http://iiuniveadds.com/blog/wp-content/uploads/2009/07/Untitled-15.png" alt="Untitled-1" title="Untitled-1" width="299" height="250" class="alignleft size-full wp-image-829" /><span id="more-825"></span><br />
Wireless LANs have gained strong popularity in a number of vertical markets, including the health-care, retail, manufacturing, warehousing, and academia. These industries have profited from the productivity gains of using hand-held terminals and notebook computers to transmit real-time information to centralized hosts for processing. Today wireless LANs are becoming more widely recognized as a general-purpose connectivity alternative for a broad range of business customers. Business Research Group, a market research firm, predicts a sixfold expansion of the worldwide<br />
wireless LAN market by the year 2000, reaching more than $2 billion in revenues.</p>
]]></content:encoded>
			<wfw:commentRss>http://iiuniveadds.com/blog/?feed=rss2&amp;p=825</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wireless Network Security</title>
		<link>http://iiuniveadds.com/blog/?p=819</link>
		<comments>http://iiuniveadds.com/blog/?p=819#comments</comments>
		<pubDate>Fri, 24 Jul 2009 09:14:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Network]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://iiuniveadds.com/blog/?p=819</guid>
		<description><![CDATA[Wireless Internet Security:
With an increase in the use of wireless Internet technology, security professionals recommend that you take a moment to review your home’s wireless security. When you have an insecure wireless network, people many houses away from your home might be able to connect to your system and the Internet. Anyone connecting to your [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Wireless Internet Security:</strong></p>
<p>With an increase in the use of wireless Internet technology, security professionals recommend that you take a moment to review your home’s wireless security. When you have an insecure wireless network, people many houses away from your home might be able to connect to your system and the Internet. Anyone connecting to your system could have access to your computers and access any passwords, financial or other personal information you have stored. While connected to your system, a person could also commit a crime and because you own the Internet connection, it could lead police back to you. For all these reasons, it is important to keep your wireless network secure. Below are some tips for keeping your wireless network as secure as possible.<br />
<strong>Wireless Network Security Tips</strong><br />
<strong>• Install a firewall.</strong><br />
A firewall can help protect your computer in two ways. First, it can prevent unauthorized users from accessing your computer through the Internet or another network. It can also act as a barrier that checks data coming from outside your network and then blocks the data or allows it to pass through to your computer.<br />
<img src="http://iiuniveadds.com/blog/wp-content/uploads/2009/07/93-security-300x225.jpg" alt="93-security" title="93-security" width="300" height="225" class="alignleft size-medium wp-image-821" /><span id="more-819"></span><br />
<strong> • Change the administrative password on your wireless routers.</strong> Wireless devices are shipped with default passwords for easy setup and access, but these passwords are easy to find on the vendor support sites and should be replaced with a strong secure password when you complete your installation.<br />
<strong>• Change the default SSID name and turn off SSID broadcasting.</strong> The SSID is the public name of your wireless network. You should turn the SSID broadcasting feature off. This feature is set up to make it easier for any casual user whose is configured to connect to any available SSID broadcast it finds. Entering the SSID manually takes only a moment and will make it more difficult for any nearby user to log onto your network. You should also change the SSID name from the default name that is set up by the vendor, as these are just as easy to discover as the default passwords.<br />
<strong>• Disable DHCP.</strong> For a small network with only a few nodes, consider disabling DHCP (Dynamic Host Configuration Protocol) on your router and assigning IP addresses to your computers manually. On newer wireless routers, you can even restrict access to the router to specified MAC addresses.<br />
<strong>• Replace WEP with WPA.</strong> WPA is a stronger encryption standard than WEP and will provide stronger protections for your network.<br />
<strong> • Position the wireless access point safely.</strong> Wireless signals normally reach to the exterior of a home. A small amount of &#8220;leakage&#8221; outside of the premises is not a major problem, but the further this signal reaches, the easier it is for others to detect and exploit. Wireless signals can often reach across streets and through neighboring homes. When installing a wireless home network, the position of the<br />
access point determines its reach. Try to position these devices near the center of the home rather than near windows to minimize this leakage.<br />
<strong> • Turn Off the Network During Extended Periods of Non-Use.</strong> The ultimate in security measures, shutting down the network will certainly prevent outside hackers from breaking in! While impractical to turn the devices off and on frequently, at least consider doing so during travel or extended periods offline<br />
<strong>• Keep your operating system patched and updated with the latest releases.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://iiuniveadds.com/blog/?feed=rss2&amp;p=819</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website &#8211; Before Implementation Steps!!</title>
		<link>http://iiuniveadds.com/blog/?p=807</link>
		<comments>http://iiuniveadds.com/blog/?p=807#comments</comments>
		<pubDate>Fri, 24 Jul 2009 09:00:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://iiuniveadds.com/blog/?p=807</guid>
		<description><![CDATA[• Have you incorporated an e-commerce business system onto your web site?
• Have you assigned an employee to manage and link with the web design
guide (entry onto the web site must be modest and expandable with property of the HTML code being transferred to your business upon completion of web site design).

• Does your web [...]]]></description>
			<content:encoded><![CDATA[<p>• Have you incorporated an e-commerce business system onto your web site?<br />
• Have you assigned an employee to manage and link with the web design<br />
guide (entry onto the web site must be modest and expandable with property of the HTML code being transferred to your business upon completion of web site design).<br />
<img class="alignleft size-full wp-image-814" title="web-design" src="http://iiuniveadds.com/blog/wp-content/uploads/2009/07/web-design.jpg" alt="web-design" width="300" height="120" /><span id="more-807"></span><!--more--><br />
• Does your web site have a best statement about who and what you are?<br />
• Have you included an e-mail link on each page of your web site? Do you have a mechanism in place to collect e-mail addresses?<br />
• Does your web site include Meta Tags so that search engines can find your<br />
business? (Meta Tags are used by the greater part of search engines to locate sites in response to web surfers’ queries. The text of your home page, along with your Meta Tags should include key words about product, service, location, features etc. of your business).<br />
• Have you included a search facility to help users navigate your site?<br />
• Have you included contact details, such as names and telephone numbers, for your business during office hours?</p>
]]></content:encoded>
			<wfw:commentRss>http://iiuniveadds.com/blog/?feed=rss2&amp;p=807</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web-based marketing?</title>
		<link>http://iiuniveadds.com/blog/?p=806</link>
		<comments>http://iiuniveadds.com/blog/?p=806#comments</comments>
		<pubDate>Fri, 24 Jul 2009 08:49:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://iiuniveadds.com/blog/?p=806</guid>
		<description><![CDATA[• Does your site concentrate on moving appeals by presenting product
in order in an entertaining format?
• Does your site highlight differences between the products you offer as
opposed to those offered by your participant?
• Does your business have a unique presence by utilising a variety of unusual graphics to help customers easily navigate around your site?
• [...]]]></description>
			<content:encoded><![CDATA[<p>• Does your site concentrate on moving appeals by presenting product<br />
in order in an entertaining format?<br />
• Does your site highlight differences between the products you offer as<br />
opposed to those offered by your participant?<br />
• Does your business have a unique presence by utilising a variety of unusual graphics to help customers easily navigate around your site?<br />
• Does your site help you to directly manage the interface with your<br />
customers?<br />
<img src="http://iiuniveadds.com/blog/wp-content/uploads/2009/07/web-design-development-300x109.jpg" alt="web-design-development" title="web-design-development" width="300" height="109" class="alignleft size-medium wp-image-811" /><span id="more-806"></span><br />
• Will your site act as an on-line shop front offering consumers the opportunity to purchase directly from the firm?<br />
• Will your site offer consumers the opportunity to sample the product online<br />
(eg:web design)?<br />
• Does your site allow customers to easily order products from you, or make their selections in a most effective manner?</p>
]]></content:encoded>
			<wfw:commentRss>http://iiuniveadds.com/blog/?feed=rss2&amp;p=806</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Important tips 10 when you Design Web Pages!!</title>
		<link>http://iiuniveadds.com/blog/?p=798</link>
		<comments>http://iiuniveadds.com/blog/?p=798#comments</comments>
		<pubDate>Fri, 24 Jul 2009 08:24:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[web page]]></category>

		<guid isPermaLink="false">http://iiuniveadds.com/blog/?p=798</guid>
		<description><![CDATA[You will find many examples of bright backgrounds on the web and people often think that their use brightens up otherwise dull pages. In truth it detracts from the page’s readability. Try and use black text on
a white background most of the time as it is the content of the page, not its colour which [...]]]></description>
			<content:encoded><![CDATA[<p>You will find many examples of bright backgrounds on the web and people often think that their use brightens up otherwise dull pages. In truth it detracts from the page’s readability. Try and use black text on<br />
a white background most of the time as it is the content of the page, not its colour which people are generally interested in.<br />
Other simple design rules are:<br />
<strong>1.</strong> Try to use capitals and bold sparingly, as you can only highlight so much, or you effectively highlight<br />
nothing.<br />
<strong>2.</strong> Avoid using huge fonts on you page. You rarely need to use Heading1 and it normally just takes up lots<br />
of space which could be used for something else.<br />
<img src="http://iiuniveadds.com/blog/wp-content/uploads/2009/07/Untitled-14-300x260.png" alt="Untitled-1" title="Untitled-1" width="300" height="200" class="alignleft size-medium wp-image-803" /><span id="more-798"></span><br />
<strong>3.</strong> Restrict the line width of the page using tables, so that the number of words to a line is no more than<br />
about 15. More words in a line is difficult to read. Give it a try and see what you think.<br />
<strong>4. </strong>Spell check all your pages before putting them live. You would be surprised how often typos creep into<br />
your web pages and people are sure to notice.</p>
<p><strong>5.</strong> Don’t use the BLINK tag – it is very annoying.<br />
<strong>6. </strong>Give people a way to contact you with feedback about your site – an invaluable way of getting good<br />
suggestions as well as finding out things that don’t work.<br />
<strong>7.</strong>Think about using simple buttons and icons, as they can really liven up your site. These can be simply<br />
designed using lots of free software readily available. Explore one of the free software CDs with one of<br />
the internet magazines.<br />
<strong>8.</strong> Try and keep each page short enough to fit into one browser window. Long scrolling pages are difficult<br />
to take in, so break them up into lots of linked smaller pages.<br />
<strong>9.</strong> Try and keep the file size of your images to below 30Kbytes for the whole page. This should allow your<br />
pages to load quickly.<br />
<strong>10.</strong> Avoid the use of counters as this either makes it look like the pages aren’t very well visited, or it looks<br />
like you feel you need to tell people how popular you are.</p>
]]></content:encoded>
			<wfw:commentRss>http://iiuniveadds.com/blog/?feed=rss2&amp;p=798</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
