<?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>Winged Wolf Studio &#187; Gemutations</title>
	<atom:link href="http://warofwinds.com/winged-wolf-studio/tag/gemutations/feed/" rel="self" type="application/rss+xml" />
	<link>http://warofwinds.com/winged-wolf-studio</link>
	<description>Time to Fly</description>
	<lastBuildDate>Wed, 31 Aug 2011 18:54:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Tips and Tricks: Link Anchors and Titles</title>
		<link>http://warofwinds.com/winged-wolf-studio/tips-and-tricks-link-anchors-and-titles/</link>
		<comments>http://warofwinds.com/winged-wolf-studio/tips-and-tricks-link-anchors-and-titles/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 02:35:40 +0000</pubDate>
		<dc:creator>KEZ</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Gemutations]]></category>
		<category><![CDATA[link anchors]]></category>
		<category><![CDATA[link titles]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[webcomic]]></category>

		<guid isPermaLink="false">http://warofwinds.com/winged-wolf-studio/?p=50</guid>
		<description><![CDATA[To follow up the long list of things I think everyone should have on their webcomic sites, I&#8217;m now going to talk about one way to organize all that information on a single page.  After making webpages for so many different sites, something I realize now is that website visitors don&#8217;t want to be directed [...]]]></description>
			<content:encoded><![CDATA[<p>To follow up the long list of things I think everyone should have on their webcomic sites, I&#8217;m now going to talk about one way to organize all that information on a single page.  After making webpages for so many different sites, something I realize now is that website visitors <em>don&#8217;t</em> want to be directed to page after page after page, because they lose track of where they came from.  They get &#8220;lost&#8221; in all the information, basically.  Instead, they would rather all the information be available on one page, organized, and easy to read. If, on that page, they realize they want more information on a single topic, then they want to click a link to an &#8220;expanded&#8221; description.</p>
<p>So how do you do this? <strong>No one wants to read down a huge, scrolling wall of text.</strong> No one wants to have to scan through that text to find the ONE piece of information they want.  This is where link achors come in handy.</p>
<p>Link anchors are regular links that take you a place on the <em>same</em> webpage.  You can see it in action on my own <a href="http://warofwinds.com/war-of-winds.php?page=about2.htm" target="_blank">about page</a>.  When you click any of the links in the sub-navigation, you are taken to the paragraph in question.  These are extremely convenient when used properly, but like all &#8220;tricks&#8221; should be used in moderation.  You do NOT need to use link anchors on the majority of pages you make unless you are doing something wrong: writing TOO much, basically.  <strong>Brevity is a virtue on the internet </strong>(and just about everywhere, for that matter), practice it.</p>
<p>To code a link anchor, you do the following and place it at the <strong>destination</strong> of where you want to take the reader (anchor goes at destination, simple, yes?):</p>
<p style="text-align: center;"><span style="color: #339966;">&lt;a id=&#8221;LINK-NAME&#8221;&gt;&lt;/a&gt;</span></p>
<p>There is nothing inside of that link, and there is no &#8220;href.&#8221;  It is an anchor. You CAN put text inside of that, but it defeats the purpose of even having an anchor.</p>
<p>To link TO the anchor, you code the following (no spaces in the link name, only underscores and hyphens!):</p>
<p style="text-align: center;"><span style="color: #339966;">&lt;a href=&#8221;#LINK-NAME&#8221;&gt;Text&lt;/a&gt;</span></p>
<p>For example, I will make a link inside of this article.  This <a href="#here">link</a>&#8230;</p>
<p>
<p>
<p>
&#8230;</p>
<p>
<p>
<p>
&#8230;will take you <a id="here"></a><span style="text-decoration: underline;">here</span>.  This comes in handy when you want <strong>direct readers to a specific place</strong>, obviously. For example, on your cast page. If you go a <a href="http://darwin.comicgenesis.com/" target="_blank">recent website I built</a>, the character thumbnails on the front page link to separate character profiles on the cast page.</p>
<p>The second trick is <strong>link titles</strong>. Last time I went over link titles it was <a href="http://warofwinds.com/winged-wolf-studio/improving-seo-images-links-titles-and-alts/">on the subject of SEO</a>. Now it&#8217;s about putting more information in a page without actually PUTTING it in there.  Again, I will direct you to a live example: <a href="http://warofwinds.com/war-of-winds.php?page=cast2.htm" target="_blank">my cast page</a>.  Please hover over the text that is highlighted in the character profiles. See the &#8220;title&#8221; that comes up?  The information is available if people want it, but it is not there to take up more space unnecessarily.</p>
<p>This is coded with the following:</p>
<p style="text-align: center;"><span style="color: #339966;">&lt;a title=&#8221;descriptive text here&#8221;&gt;Visible Text Here&lt;/a&gt;</span></p>
<p>And in action:</p>
<p style="text-align: center;"><a title="descriptive text here">Visible Text Here</a></p>
<p>This text is not clickable. It doesn&#8217;t take the visitor away from the page The extra information only appears when the cursor is hovered over it. BUT! This extra text is visible to search engines. SEO FTW!</p>
<p><strong>Next Up: A personal success story in Webcomic SEO.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://warofwinds.com/winged-wolf-studio/tips-and-tricks-link-anchors-and-titles/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

