<?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>PiticStyle &#187; website</title>
	<atom:link href="http://www.piticstyle.com/tag/website/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.piticstyle.com</link>
	<description>Articles, Tutorials about HTML, CSS, FLASH, PHP, MySQL, Photoshop, SEO, Tools for Webmasters, Media</description>
	<lastBuildDate>Thu, 02 Sep 2010 12:45:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Create a simple MENU in CSS</title>
		<link>http://www.piticstyle.com/2007/10/30/create-a-simple-menu-in-css/</link>
		<comments>http://www.piticstyle.com/2007/10/30/create-a-simple-menu-in-css/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 23:53:55 +0000</pubDate>
		<dc:creator>PiticStyle</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cascade style sheet]]></category>
		<category><![CDATA[Create a Menu in CSS]]></category>
		<category><![CDATA[Create MENU]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[sitedesign]]></category>
		<category><![CDATA[tips&tricks]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[w3c]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[worldwideweb consortium]]></category>

		<guid isPermaLink="false">http://www.piticstyle.com/2007/10/30/create-a-simple-menu-in-css/</guid>
		<description><![CDATA[
Today we create a simple MENU in CSS. Click here to see the final result!
[1] Let&#8217;s to create the CSS:
&#60;style type=&#8221;text/css&#8221;&#62;
body  {
text-align: left;
background-image: url(&#8221;bg.gif&#8221;);
}
div     {
width: 100px;
height: 20px;
background-color: #338ce8;
}
div:hover
{
background-color: #085ea6;
}
a       {
color: white;
font-size: 18px;
text-decoration: none;
}
&#60;/style&#62;

Note:
text-decoration: none;  I put this expresion to remove the line under the link!
[2] Now we need to create the HTML code:
&#60;html&#62;
&#60;body&#62;
&#60;head&#62;
&#60;title&#62;Create a simple Menu in CSS&#60;/title&#62;
/* Here is the CSS code */
&#60;/head&#62;
&#60;body&#62;&#60;center&#62;&#60;h1&#62;&#60;u&#62;Create a simple Menu in [...]]]></description>
			<content:encoded><![CDATA[<p><img SRC="http://i6.tinypic.com/62ypund.gif" BORDER="1" WIDTH="112" HEIGHT="74" /></p>
<p>Today we create a simple MENU in CSS. Click <a HREF="http://www.piticstyle.com/menu/" TARGET="_blank">here</a> to see the final result!</p>
<p>[1] Let&#8217;s to create the CSS:</p>
<p><font COLOR="#ff9900">&lt;style type=&#8221;text/css&#8221;&gt;<br />
body  {<br />
text-align: left;<br />
background-image: url(&#8221;bg.gif&#8221;);<br />
}<br />
div     {<br />
width: 100px;<br />
height: 20px;<br />
background-color: #338ce8;<br />
}<br />
div:hover<br />
{<br />
background-color: #085ea6;<br />
}<br />
a       {<br />
color: white;<br />
font-size: 18px;<br />
text-decoration: none;<br />
}<br />
&lt;/style&gt;</font><br />
<span id="more-669"></span><br />
<u>Note</u>:<br />
<font COLOR="#ff6600">text-decoration: none;</font>  I put this expresion to remove the line under the link!</p>
<p>[2] Now we need to create the HTML code:</p>
<p><font COLOR="#ff9900">&lt;html&gt;<br />
&lt;body&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Create a simple Menu in CSS&lt;/title&gt;</font><br />
/* Here is the CSS code */<br />
<font COLOR="#ff9900">&lt;/head&gt;<br />
&lt;body&gt;&lt;center&gt;&lt;h1&gt;&lt;u&gt;Create a simple Menu in CSS&lt;/u&gt;&lt;/h1&gt;<br />
&lt;br&gt;&lt;br&gt;<br />
&lt;div&gt;&lt;a href=&#8221;#&#8221; mce_href=&#8221;#&#8221;&gt;HOME&lt;/a&gt;&lt;/div&gt;<br />
&lt;div&gt;&lt;a href=&#8221;#&#8221; mce_href=&#8221;#&#8221;&gt;SERVICES&lt;/a&gt;&lt;/div&gt;<br />
&lt;div&gt;&lt;a href=&#8221;#&#8221; mce_href=&#8221;#&#8221;&gt;CONTACT&lt;/a&gt;&lt;/div&gt;&lt;/center&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</font></p>
<p>The entire code:</p>
<p><font COLOR="#ff9900">&lt;html&gt;<br />
&lt;body&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Create a simple Menu in CSS&lt;/title&gt;</font><font COLOR="#ff9900"><br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
body  {<br />
text-align: left;<br />
background-image: url(&#8221;bg.gif&#8221;);<br />
}<br />
div     {<br />
width: 100px;<br />
height: 20px;<br />
background-color: #338ce8;<br />
}<br />
div:hover<br />
{<br />
background-color: #085ea6;<br />
}<br />
a       {<br />
color: white;<br />
font-size: 18px;<br />
text-decoration: none;<br />
}<br />
&lt;/style&gt;<br />
</font><font COLOR="#ff9900">&lt;/head&gt;<br />
&lt;body&gt;&lt;center&gt;&lt;h1&gt;&lt;u&gt;Create a simple Menu in CSS&lt;/u&gt;&lt;/h1&gt;<br />
&lt;br&gt;&lt;br&gt;<br />
&lt;div&gt;&lt;a href=&#8221;#&#8221; mce_href=&#8221;#&#8221;&gt;HOME&lt;/a&gt;&lt;/div&gt;<br />
&lt;div&gt;&lt;a href=&#8221;#&#8221; mce_href=&#8221;#&#8221;&gt;SERVICES&lt;/a&gt;&lt;/div&gt;<br />
&lt;div&gt;&lt;a href=&#8221;#&#8221; mce_href=&#8221;#&#8221;&gt;CONTACT&lt;/a&gt;&lt;/div&gt;&lt;/center&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</font></p>
<p>That&#8217;s it! <a HREF="http://www.piticstyle.com/menu/" TARGET="_blank">Here</a> is the final result!</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-2812146301598422";
google_ad_width = 336;
google_ad_height = 280;
google_ad_format = "336x280_as";
google_ad_type = "text";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "3D81EE";
google_color_text = "000000";
google_color_url = "000000";
//-->
</script><br />
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.piticstyle.com/2007/10/30/create-a-simple-menu-in-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash MP3 Player</title>
		<link>http://www.piticstyle.com/2007/10/29/flash-mp3-player/</link>
		<comments>http://www.piticstyle.com/2007/10/29/flash-mp3-player/#comments</comments>
		<pubDate>Mon, 29 Oct 2007 23:58:40 +0000</pubDate>
		<dc:creator>PiticStyle</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Embed Music Online]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Mp3 Player]]></category>
		<category><![CDATA[Free Flash Mp3 Player]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Player for your site]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.piticstyle.com/2007/10/29/flash-mp3-player/</guid>
		<description><![CDATA[I found in my PC a very beautiful and easy to configurate. Click here to see an example!

How to configurate:
[1] You have 6 files in the archive

- The folder called mp3 files is the folder where you put your mp3 files to embed in player
- Is an XML document and here you write the artist and title of your mp3, [...]]]></description>
			<content:encoded><![CDATA[<p>I found in my PC a very beautiful and easy to configurate. Click <a HREF="http://www.piticstyle.com/player/" TARGET="_blank">here</a> to see an example!</p>
<p><img HEIGHT="281" WIDTH="271" BORDER="0" ALT="Flash Mp3 Player" SRC="http://i21.tinypic.com/2vm8yo4.jpg" /><br />
<u>How to configurate</u>:<br />
<span id="more-666"></span>[1] You have 6 files in the archive</p>
<p><img BORDER="0" SRC="http://i24.tinypic.com/51oy9v.jpg" /></p>
<p>- The folder called <strong>mp3 files</strong> is the folder where you put your mp3 files to embed in player<br />
- Is an XML document and here you write the artist and title of your mp3, open it (right click -&gt; Open with and select your editor, I use Notepad</p>
<p><font COLOR="#ff6600">&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;?&gt;<br />
&lt;player showDisplay=&#8221;yes&#8221; showPlaylist=&#8221;yes&#8221; autoStart=&#8221;yes&#8221;&gt;<br />
&lt;song path=&#8221;mp3 files/Will.mp3&#8243; title=&#8221;Will.I.Am &#8211; I got it from my mama (K.ro remix)&#8221; /&gt;<br />
&lt;song path=&#8221;mp3 files/Chingy.mp3&#8243; title=&#8221;Chingy &#8211; Dem jeans (K.ro remix)&#8221; /&gt;<br />
&lt;song path=&#8221;mp3 files/Empireisis.mp3&#8243; title=&#8221;Empireisis &#8211; Get up on it (K.ro remix)&#8221; /&gt;<br />
&lt;song path=&#8221;" title=&#8221;" /&gt;<br />
&lt;song path=&#8221;" title=&#8221;" /&gt;<br />
&lt;/player&gt;Save it and use this code to embed your Flash player in a Page ( we talk about localhost because if you want to be online you need to upload the files on your server. I hope you have a server because the sites who give<br />
free hosting don&#8217;t let you yto uploade mp3, mp3, wav, wma, etc!)</p>
<p></font><font COLOR="#ff6600">&lt;object type=&#8221;application/x-shockwave-flash&#8221; data=&#8221;mp3player.swf&#8221;<br />
width=&#8221;280&#8243; height=&#8221;280&#8243; wmode=&#8221;transparent&#8221;&gt;<br />
&lt;param name=&#8221;movie&#8221; value=&#8221;mp3player.swf&#8221; /&gt;<br />
&lt;param name=&#8221;wmode&#8221; value=&#8221;transparent&#8221; /&gt;<br />
&lt;/object&gt;</font></p>
<p><u>Note</u>: This player accept only mp3 files! Click <a HREF="http://www.piticstyle.com/player/" TARGET="_blank">here</a> to see and example</p>
<p><a HREF="http://rapidshare.com/files/66135410/Flash_MP3_Player.rar" TARGET="_blank">Download</a></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-2812146301598422";
google_ad_width = 336;
google_ad_height = 280;
google_ad_format = "336x280_as";
google_ad_type = "text";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "3D81EE";
google_color_text = "000000";
google_color_url = "000000";
//-->
</script><br />
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.piticstyle.com/2007/10/29/flash-mp3-player/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Being on the Web Doesn’t Make it Public Domain &#8211; Protect Your Rights!</title>
		<link>http://www.piticstyle.com/2007/10/04/being-on-the-web-doesn%e2%80%99t-make-it-public-domain-protect-your-rights/</link>
		<comments>http://www.piticstyle.com/2007/10/04/being-on-the-web-doesn%e2%80%99t-make-it-public-domain-protect-your-rights/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 16:39:03 +0000</pubDate>
		<dc:creator>PiticStyle</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[author]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[judge]]></category>
		<category><![CDATA[law]]></category>
		<category><![CDATA[protect your rights]]></category>
		<category><![CDATA[rights]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.piticstyle.com/?p=467</guid>
		<description><![CDATA[ 
Copyright on the Web seems to be a difficult concept for people to understand. If you did not write or create the article, graphic, or data that you found, then you need permission from the owner before you can copy it. Remember, when you use someone’s graphic, HTML, or text without permission, you are stealing, [...]]]></description>
			<content:encoded><![CDATA[<p> <img BORDER="0" SRC="http://i20.tinypic.com/m9rhnp.jpg" /></p>
<p>Copyright on the Web seems to be a difficult concept for people to understand. If you did not write or create the article, graphic, or data that you found, then you need permission from the owner before you can copy it. Remember, when you use someone’s graphic, HTML, or text without permission, you are stealing, and they can take action against you.</p>
<p><strong>What is Copyright?</strong></p>
<p>Copyright is the right of the owner to reproduce or permit someone else to reproduce copyrighted works. Copyrightable works include:</p>
<ul>
<li>literary works such as articles, stories, journals, or computer programs</li>
<li>pictures and graphics</li>
<li>blueprints of architecture</li>
<li>music and song lyrics</li>
<li>plays and screenplays</li>
<li>audiovisual recordings such as movies</li>
<li>sound recordings</li>
</ul>
<p>If you’re not sure if an item is copyrighted, it probably is.<br />
<span id="more-467"></span></p>
<p>Reproduction can include:</p>
<ul>
<li>printing a Web page</li>
<li>copying the HTML, JavaScript or other code of a page</li>
<li>downloading an image to your hard drive</li>
<li>printing an image</li>
</ul>
<p>Most copyright owners on the Web will not object to personal use of their Web pages.</p>
<p>For example, if you found a Web page that you wanted to print, most developers would not find it a violation of their copyright if you were to print out the page.</p>
<p><strong>Copyright Notice</strong></p>
<p>Even if a document or image on the Web does not have a copyright notice, it is still protected by copyright laws. If you are trying to protect your own work, it is always a good idea to have a copyright notice on your page. For images, you can add watermarks and other copyright information into the image itself using special software, and you should also include your copyright in the alt text.</p>
<p><strong>When is it an Infringement?</strong></p>
<p>The most common types of copyright infringement on the Web are images being used on Web sites other than the owners. It doesn’t matter if you copy the image to your Web server or point to it on their Web server. If you use an image on your Web site that you didn’t create, you must get permission from the owner. It is also common for the text, HTML, and script elements of a page to be taken and reused. If you have not gotten permission, you have violated the owner’s copyright.</p>
<p>Many companies take this type of infringement very seriously. About, for instance, has a legal team that handles copyright infringement, and the Fox TV network is very diligent in searching out fan sites that use their images and music and will demand that the copyrighted material be removed.</p>
<p><strong>But How Will they Know?</strong></p>
<p>Before I answer that, keep in mind this quote: “Integrity is doing the right thing even if no one will know”.</p>
<p>Many corporations have programs called “spiders” that will search out images and text on Web pages. If it matches the criteria (same file name, content matches, and other things), they will flag that site for review and it will be reviewed for copyright infringement. These spiders are always surfing the net, and new companies are using them all the time.</p>
<p>For smaller businesses, the most common way to find copyright infringement is by accident or being told about the infringement. For example, as an About Guide, we have to search the Web for new articles and information about our topics. Many Guides have done searches and come up with sites that are exact duplicates of their own, right down to the content they wrote. Other Guides have received email from people either reporting a possible infringement, or just announcing the site that turns out to have stolen content.</p>
<p><strong>Fair Use</strong></p>
<p>Many people talk about fair use as if that makes it okay to copy someone else’s work. However, if someone takes you to court over a copyright issue, you have to admit to the infringement, and then claim it is “fair use”. The judge then makes a decision based upon the arguments.</p>
<p>If you are doing a parody, commentary, or educational information you may be able to claim fair use. However, fair use is nearly always a short excerpt from an article and it is usually attributed to the source. Also, if your use of the excerpt harms the commercial value of the work (along the lines of if they read your article they won’t need to read the original), then your claim of fair use may be nullified. In this sense, if you copy an image to your Web site this cannot be fair use, as there is no reason for your viewers to go to the owner’s site to see the image.</p>
<p>When using someone else’s graphics or text on your Web page, I would recommend getting permission. Like I said before, if you are sued for copyright violation, you must admit to the infringement, and then hope that the judge or jury agrees with your arguments. It’s faster and safer to just ask permission</p>
<p><em>What do you think? An author  resolve something if  denounce you?</p>
<p></em><a TARGET="_blank" HREF="http://digg.com/tech_news/Being_on_the_Web_Doesn_t_Make_it_Public_Domain_Protect_Your_Rights"><img HEIGHT="20" WIDTH="100" BORDER="0" SRC="http://digg.com/img/badges/100x20-digg-button.gif" /></a><em><br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.piticstyle.com/2007/10/04/being-on-the-web-doesn%e2%80%99t-make-it-public-domain-protect-your-rights/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
