Links: Difference between revisions

861 bytes added ,  11 years ago
Undo revision 13118 by AmyRehner (talk)
(Undo revision 13118 by AmyRehner (talk))
 
(17 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[Blog_Writing_for_College_Students|Home]]
No page on the internet stands alone. The connection of sites on the internet is what makes the web interactive. Links play a vital role in maintaining this interactivity. By connecting to other areas of the internet, readers are given access to an unlimited pool of information. An article by Lee Munroe of [http://www.smashingmagazine.com/2010/02/13/the-definitive-guide-to-styling-web-links/ Smashing Magazine] quoted [http://webstandardistas.com/ Web Standardistas] saying "“without hypertext links the Web wouldn’t be the Web, it would simply be a collection of separate, unconnected pages.”<ref>Lee Munroe</ref>
No page on the internet stands alone. The connection of sites on the internet is what makes the web interactive. Links play a vital role in maintaining this interactivity. By connecting to other areas of the internet, readers are given access to an unlimited pool of information. An article by Lee Munroe of [http://www.smashingmagazine.com/2010/02/13/the-definitive-guide-to-styling-web-links/ Smashing Magazine] quoted [http://webstandardistas.com/ Web Standardistas] saying "“without hypertext links the Web wouldn’t be the Web, it would simply be a collection of separate, unconnected pages.”<ref>Lee Munroe</ref>


Line 16: Line 18:
===Sources===  
===Sources===  


Sources can include supporting documents, empirical research and reports,corroborating accounts, definitions, explanations, maps, and artifacts.<ref>Brian Carroll 39</ref> When referencing a person, link to that person's page. When talking about a movie, link to the trailer. Keep in mind that common knowledge to the author may be foreign to the reader.
Sources can include supporting documents, empirical data, corroborating accounts, definitions of words, explanations, maps, etc. When referencing a person, link to that person's page. When talking about a movie, link to the trailer. Keep in mind that common knowledge to the author may be foreign to the reader.


=== Embedded links===
=== Embedded links===
Embedded links are the most common type of link. The link is designated by a "hot area" identified by a word or object.<ref>Brian Carroll 77</ref> These link to other web pages outside of your blog. Using external links is useful in giving access to evidence that verifies the information presented in your blog, or provided related reading material.
Embedded links are the most common type of link. These link to other web pages outside of your blog. Using external links is useful in giving access to evidence that verifies the information presented in your blog, or provided related reading material. The link is designated by a "hot area" identified by a word or object. According to [http://www.webopedia.com/TERM/H/hot_spot.html Webopedia], a hot area is  "an area of a graphics object, or a section of text, that activates a function when selected. Hot spots are particularly common in multimedia applications, where selecting a hot spot can make the application display a picture, run a video, or open a new window of information."


===Inline links===
===Inline links===
Inline links do not take the reader off the page.<ref>Brian Carroll 78</ref> These links display content that is located somewhere else on the web, but they do not require the user to navigate away from the blog. The most common types of inline links are pictures and videos. The author displays these graphics on his or her page, but acknowledges that they originated elsewhere on the internet.
Inline links do not take the reader off the page. These links display content that is located somewhere else on the web, but they do not require the user to navigate away from the blog. The most common types of inline links are pictures and videos. The author displays these graphics on his or her page, but acknowledges that they originated elsewhere on the internet.


===Anchors===
===Anchors===
Like inline links, anchors do not send readers elsewhere. Instead, these links connect the reader to other sections of the page.<ref>Brian Carroll 78</ref> One of the most important internal links is a link to the home page. As bloggers, we should keep in mind that not all users access each page through the home page. Providing a link to the homepage gives access to the rest of your content.
Like inline links, anchors do not send readers elsewhere. Instead, these links connect the reader to other sections of the page. [http://kb.weebly.com/anchor-links.html Weebly support center] says, "Anchor links enable you to link directly from one part of a page to another" One of the most anchor links is a link to the home page. As bloggers, we should keep in mind that not all users access each page through the home page. Providing a link to the homepage gives access to the rest of your content.


==How to Link==
==How to Link==
=== HTML ===
=== HTML ===
Creating hypertext with HTML can be done with a simple code. The HTML link syntax looks like this: <a href="url">Link text</a>  
Creating hypertext with HTML can be done with a simple code. The HTML link syntax looks like this: '''<a href="url">Link text</a>'''
 
Example: To link to a page about linking, I would use this code '''<nowiki><a href="http://www.w3schools.com/html/html_links.asp#gsc.tab=0">Links</a></nowiki>'''. It would then appear as: [http://www.w3schools.com/html/html_links.asp#gsc.tab=0 Links]. This HTML code will work on websites that support HTML coding.
 
====New tab====
Sometimes it's beneficial to have hyperlinks open a new tab or window. The HTML code for opening the link in another tab looks like this: '''<nowiki><a href="URL of target site" target="_blank">Anchor text</a></nowiki>''' and displays as this: [http://www.w3schools.com/html/html_links.asp Anchor text].


Example: To link to a page about linking, I would use this code <nowiki><a href="http://www.w3schools.com/html/html_links.asp#gsc.tab=0">Links</a></nowiki>. It would then appear as: [http://www.w3schools.com/html/html_links.asp#gsc.tab=0 Links]. This HTML code will work on websites that support HTML coding. It's important to remember that various websites will have their own method of adding a hyperlink to a post. For example, this wiki does not use the HTML code shown above. Instead, hyperlinks are shown by placing a url in standard brackets and then simply typing the word you wish to display. It looks like this: <nowiki>[http://www.wikipedia.org Wikipedia]</nowiki> and displays as this: [http://www.wikipedia.org Wikipedia]. When working with various websites, take the time to figure out how each site supports hyperlinks.  
====New window====
The HTML code for opening the link in another window looks like this: '''<nowiki><a href="URL of target site" target="_blank">Anchor Text</a> or <a href="URL of target site" target="new">Anchor Text</a></nowiki>''' and displays as this: [http://dummies.bloggertipsandtricks.com/2006/03/how-to-make-clickable-link.html Anchor Text]


Sometimes it's beneficial to have hyperlinks open a new tab or window. The HTML code for opening the link in another tab looks like this: <nowiki><a href="URL of target site" target="_blank">Anchor text</a></nowiki> and displays as this: [http://www.w3schools.com/html/html_links.asp Anchor text].
====Alternative codes====


The HTML code for opening the link in another window looks like this: <nowiki><a href="URL of target site" target="_blank">Anchor Text</a> or <a href="URL of target site" target="new">Anchor Text</a></nowiki> and displays as this: [http://dummies.bloggertipsandtricks.com/2006/03/how-to-make-clickable-link.html Anchor Text]
It's important to remember that various websites will have their own method of adding a hyperlink to a post. For example, this wiki does not use the HTML code shown above. Instead, hyperlinks are shown by placing a url in standard brackets and then simply typing the word you wish to display. It looks like this: '''<nowiki>[http://www.wikipedia.org Wikipedia]</nowiki>''' and displays as this: [http://www.wikipedia.org Wikipedia]. When working with various websites, take the time to figure out how each site supports hyperlinks.


=== The Link button ===  
=== The Link button ===  
Line 43: Line 51:


=== Unambiguous linking ===
=== Unambiguous linking ===
When incorporating hyperlinks into a blog post, make sure that any linked text leads to an obvious destination. Readers should always have a general idea of where each link will take them. Carroll said, "Hyperlinks should be obvious and unambiguous; readers should know exactly what they will find by clicking, enabling them to decide whether to click now, later or not at all."<ref>Brian Carroll 75</ref> Ambiguous links may lead to a loss of credibility.
When incorporating hyperlinks into a blog post, make sure that any linked text leads to an obvious destination. Readers should always have a clear idea of where each link will take them. Ben Hunt from [http://www.webdesignfromscratch.com/usability/clear-hyperlinks/ Web Design from Scratch] said, "To help users browse with confidence, web links should be absolutely clear and explicit." Ambiguous links may lead to a loss of credibility.


=== Contrast ===
=== Contrast ===
Line 58: Line 66:
===Headlines===
===Headlines===


Ideally, <i>[[Headers and Sub-headers| headlines and sub-headers]]</i> should stand on their own. It is both distracting and unnecessary to link the title to another page.<ref>Brian Carroll 38</ref>
Ideally, <i>[[Headers and Sub-headers| headlines and sub-headers]]</i> should stand on their own. It is both distracting and unnecessary to link the title to another page.


=== Long phrases ===  
=== Long phrases ===  
Line 76: Line 84:
==References==
==References==


#[http://kb.weebly.com/anchor-links.html Anchor Links]. ''Weebly'' Web. 10 April 2013
# Carroll, Brian. (2010). ''[http://www.scribd.com/doc/64429015/Writing-for-Digital-Media Writing for Digital Media]''. New York: Routledge. Retrieved 3 April 2013.
# Carroll, Brian. (2010). ''[http://www.scribd.com/doc/64429015/Writing-for-Digital-Media Writing for Digital Media]''. New York: Routledge. Retrieved 3 April 2013.
# [https://en.wikipedia.org/wiki/Help:Cheatsheet "Help: Cheatsheet."] ''Wikipedia.'' 30 March 2013. Web. 3 April 2013
# [https://en.wikipedia.org/wiki/Help:Cheatsheet Help: Cheatsheet.] ''Wikipedia.'' 30 March 2013. Web. 3 April 2013
# [http://www.w3schools.com/html/html_links.asp "HTML Links."] ''w3Schools'' Web. 2 April 2013
# [http://www.w3schools.com/html/html_links.asp HTML Links.] ''w3Schools'' Web. 2 April 2013
# Kyrnin, Jennifer. [http://webdesign.about.com/od/beginningtutorials/qt/external-links.htm "Why and How to Use External Links."] ''About.com'' Web. 1 April 2013
# Hunt, Ben. [http://www.webdesignfromscratch.com/usability/clear-hyperlinks/ Clear Web Hyperlinks] ''Web Design from Scratch''. Web. 10 April 2013
# Munroe, Lee. [http://www.smashingmagazine.com/2010/02/13/the-definitive-guide-to-styling-web-links/ "The Definitive Guide To Styling Web Links."] ''Smashing Magazine'' 13 February, 2013. Web. 1 April 2013
# Johnson, Thomas J. and Kaye, Barbara K. "Cruising is Believing?" Comparing Internet and Traditional Sources on Media Credibility Measures," ''Journalism & Mass Communication Quarterly'', 75,(1998): 325-40
# [http://en.support.wordpress.com/menus/ "Support: Custom Menus."] ''Wordpress'' Web. 2 April 2013
# Kyrnin, Jennifer. [http://webdesign.about.com/od/beginningtutorials/qt/external-links.htm Why and How to Use External Links.] ''About.com'' Web. 1 April 2013
# Swift, Gary. [http://www.designmatrix.com/pl/cyberpl/www/clc.html "Consistent Link Colors."] ''DesignMatriX'' 22 September, 2012. Web. 2 April 2013
# Munroe, Lee. [http://www.smashingmagazine.com/2010/02/13/the-definitive-guide-to-styling-web-links/ The Definitive Guide To Styling Web Links.] ''Smashing Magazine'' 13 February, 2013. Web. 1 April 2013
# Thatcher, James. [http://jimthatcher.com/news-061607.htm "Click Here and Other Link Text."] ''Jim Thatcher.'' 2 May 2011. Web. 3 April 2013.
# [http://en.support.wordpress.com/menus/ Support: Custom Menus.] ''Wordpress'' Web. 2 April 2013
# Thomas J. Johnson and Barbara K. Kaye, "Cruising is Believing?" Comparing Internet and Traditional Sources on Media Credibility Measures," ''Journalism & Mass Communication Quarterly'', 75,(1998): 325-40
# Swift, Gary. [http://www.designmatrix.com/pl/cyberpl/www/clc.html Consistent Link Colors.] ''DesignMatriX'' 22 September, 2012. Web. 2 April 2013
# Thatcher, James. [http://jimthatcher.com/news-061607.htm Click Here and Other Link Text.] ''Jim Thatcher.'' 2 May 2011. Web. 3 April 2013.
 
==See Also==
*[[Themes|Themes]]
*[[Categorizing Posts|Categorizing Posts]]
*[[Headers and Sub-headers|Headers and Sub-headers]]
*[[Lists|Lists]]
 
 
[[Category:New Media]]
twitter
261

edits