<?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>NewSourceMedia Blog &#187; HTML</title>
	<atom:link href="http://newsourcemedia.com/blog/category/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://newsourcemedia.com/blog</link>
	<description>Focused on Interactive Design, Development and Marketing</description>
	<lastBuildDate>Fri, 30 Dec 2011 04:30:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Copyright and Trademark in html code</title>
		<link>http://newsourcemedia.com/blog/copyright-and-trademark-in-html-code/</link>
		<comments>http://newsourcemedia.com/blog/copyright-and-trademark-in-html-code/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 00:22:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tags and Symbols]]></category>
		<category><![CDATA[Copyright]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[symbols]]></category>
		<category><![CDATA[Trademark]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/2008/10/07/copyright-and-trademark-in-html-code/</guid>
		<description><![CDATA[Here's how to create the Copyright and Trademark symbols in html. Copyright and Trademark in html code is known as ASCII codes. They can be used to create several types of symbols. This is how to use ASCII code in &#8230; <a href="http://newsourcemedia.com/blog/copyright-and-trademark-in-html-code/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[Here's how to create the Copyright and Trademark symbols in html.
<span id="more-153"></span>

Copyright and Trademark in html code is known as ASCII codes. They can be used to create several types of symbols. This is how to use ASCII code in html code to create Copyright and Trademark symbols.

You can identify ASCII codes in html with the preceding "&amp;#"

They should be placed into the html just as plain text.  The browser should render the ASCII code as the correct symbol.

The copyrights symbol © can be created using this:
<span style="font-weight: bold;">&amp;amp;amp;#0169;</span>
The registered mark ® can be created using this:
<span style="font-weight: bold;">&amp;amp;amp;#0174;</span>
The trademark symbol ™ can be created using this:
<span style="font-weight: bold;">&amp;amp;amp;#0153; </span>]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/copyright-and-trademark-in-html-code/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Remove Underline-Links</title>
		<link>http://newsourcemedia.com/blog/remove-underline-links/</link>
		<comments>http://newsourcemedia.com/blog/remove-underline-links/#comments</comments>
		<pubDate>Wed, 27 Apr 2005 00:22:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[links.]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[underline link]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/2005/04/26/remove-underline-links/</guid>
		<description><![CDATA[<span class="image-rss"><a href="http://newsourcemedia.com/blog/remove-underline-links/"><img title="Remove Underline-Links" src="http://ecx.images-amazon.com/images/I/41-bZNqD7KL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA240_SH20_OU01_.jpg" alt="Remove Underline-Links" width="200" height="200" /></a></span><br/>Here is a quick and easy way to remove underline-links in your html links. There are times when hyperlink-underlines can get in the way. One example is when there is an underscore "_" in your link address (usually an e-mail &#8230; <a href="http://newsourcemedia.com/blog/remove-underline-links/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<span class="image-rss"><a href="http://newsourcemedia.com/blog/remove-underline-links/"><img title="Remove Underline-Links" src="http://ecx.images-amazon.com/images/I/41-bZNqD7KL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA240_SH20_OU01_.jpg" alt="Remove Underline-Links" width="200" height="200" /></a></span><br/>Here is a quick and easy way to remove underline-links in your html links.
<span id="more-258"></span>

There are times when hyperlink-underlines can get in the way. One example is when there is an underscore "_" in your link address (usually an e-mail address), the underline can block the view of this underscore. This will lead some viewers to believe your address contains a space and not an underscore.

Here is the code to fix this problem.

<strong>For One Link:</strong>

The code may look something like this:

<em>&lt;a href="http://www.newflashmedia.com"&gt;newflashmedia&lt;/a&gt;</em>

Typing in the blue code " <span style="color: #6699ff;"><em>style="text-decoration:none"</em></span> ", will remove the hyperlink underline:

<em>&lt;a href="http://www.newsourcemedia.com" <span style="color: #6699ff;">style="text-decoration:none"</span>&gt;newsourcemedia&lt;/a&gt;</em>

In order to affect other links repeat the process shown above.

<strong>For All Links </strong>

To affect all links in an html document, you can add CSS to the header as follows:

&lt;style type="text/css"&gt;
a {
text-decoration: none;
}
&lt;/style&gt;

That's it. Have fun.

If you have any questions, please search or post a question to the forum.You
also may want to check out the book below on web development using Macromedia

Here are a few Dreamweaver Book and Tutorials I highly recommend to help in developing html web pages:

<a href="http://www.amazon.com/gp/product/0321509854?ie=UTF8&amp;tag=newsourcemedi-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321509854"><strong>Adobe Dreamweaver CS3 Hands-On Training (Paperback)
$36.26</strong></a>

<a href="http://www.amazon.com/gp/product/0321509854?ie=UTF8&amp;tag=newsourcemedi-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321509854"><img src="http://ecx.images-amazon.com/images/I/41-bZNqD7KL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA240_SH20_OU01_.jpg" alt="" /></a><a href="http://www.amazon.com/gp/product/1596713313?ie=UTF8&amp;tag=newsourcemedi-20&amp;linkCode=xm2&amp;camp=1789&amp;creativeASIN=1596713313"><strong></strong></a>

<a href="http://www.amazon.com/gp/product/1596713313?ie=UTF8&amp;tag=newsourcemedi-20&amp;linkCode=xm2&amp;camp=1789&amp;creativeASIN=1596713313"><strong>
Dreamweaver CS3 Essential Training (DVD-ROM)
$149.95
</strong>
<img src="http://ecx.images-amazon.com/images/I/41Ibf3HbMlL._SL500_AA240_.jpg" alt="" /></a>]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/remove-underline-links/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Advanced Email Link</title>
		<link>http://newsourcemedia.com/blog/advanced-email-link/</link>
		<comments>http://newsourcemedia.com/blog/advanced-email-link/#comments</comments>
		<pubDate>Wed, 24 Dec 2003 00:22:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Extensions]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[advance]]></category>
		<category><![CDATA[blind carbon copy]]></category>
		<category><![CDATA[carbon copy]]></category>
		<category><![CDATA[cc]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[email link]]></category>
		<category><![CDATA[from]]></category>
		<category><![CDATA[links.]]></category>
		<category><![CDATA[more features]]></category>
		<category><![CDATA[subject]]></category>
		<category><![CDATA[to]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/2003/12/23/advanced-email-link/</guid>
		<description><![CDATA[This extension will help you create an email link with Subject, Carbon Copy, Blind Carbon Copy and Body text in an email link. This extension will help you create an email link with Subject, Carbon Copy, Blind Carbon Copy and &#8230; <a href="http://newsourcemedia.com/blog/advanced-email-link/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[This extension will help you create an email link with Subject, Carbon Copy, Blind Carbon Copy and Body text in an email link.
<span id="more-220"></span>

This extension will help you create an email link with Subject, Carbon Copy, Blind Carbon Copy and Body text in an email link.

View the download page here:
<a href="http://www.dreamweaver-extensions.com/email.htm" target="_blank">http://www.dreamweaver-extensions.com/email.htm</a>

Here is an example of the code:
<pre id="line238">&lt;<span class="start-tag">A</span><span class="attribute-name"> HREF</span>=<span class="attribute-value">"mailto:name@domainname.com?Subject=This is a test&amp;CC=support@macromedia.com&amp;BCC=myself@mydomain.com&amp;body=Hi fried, I was just testing this"&gt;
Click Here&lt;/a&gt;

and I never intended to 'send' it"</span>&gt;Click here to check this out&lt;/<span class="end-tag">A</span>&gt;</pre>]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/advanced-email-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prevent Crawling and Site Indexing</title>
		<link>http://newsourcemedia.com/blog/prevent-crawling-and-site-indexing/</link>
		<comments>http://newsourcemedia.com/blog/prevent-crawling-and-site-indexing/#comments</comments>
		<pubDate>Tue, 28 Oct 2003 00:22:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Meta Data]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/2003/10/27/prevent-crawling-and-site-indexing/</guid>
		<description><![CDATA[Here are three different way to prevent crawled/indexing of your site's content Here are three different way to prevent crawling/indexing of your site's content &#60;!-- Prevents indexing of the page and of links on the page. --&#62; &#60; META NAME="robots" &#8230; <a href="http://newsourcemedia.com/blog/prevent-crawling-and-site-indexing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[Here are three different way to prevent crawled/indexing of your site's content
<span id="more-237"></span>

<span style="font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;">Here are three different way to prevent crawling/indexing of your site's content

&lt;!-- Prevents indexing of the page and of links on the page. --&gt;
&lt; META NAME="robots" CONTENT="none"&gt;

&lt;!-- Prevents indexing of the page. --&gt;
&lt;META NAME="robots" CONTENT="noindex"&gt;

&lt;!-- Prevents indexing of links off the page. --&gt;</span><span style="font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;"> &lt;META NAME="robots" CONTENT="nofollow"&gt;

Post your comments and questions below.
</span>]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/prevent-crawling-and-site-indexing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
