Checklist of Internet Research Tips 1. The Internet is

Reviews
Shared by: MarvinGolden
Stats
views:
2
rating:
not rated
reviews:
0
posted:
6/24/2009
language:
pages:
0
Checklist of Internet Research Tips 1. The Internet is a self-publishing medium. It is not a library of evaluated publications selected by professionals. Rather, the Internet is a bulletin board containing everything from the definitive to the spurious. Everything must be analyzed for its appropriateness for research use. 2. Before you select a search tool, always think about your topic and what you are trying to find. Don't rely on a single site or type of site. 1 of 33 3. Don't just Google everything! Google is great, but there are other useful tools on the Web, too. Google has become so popular that many people use this tool exclusively, and miss out on others that might be more useful for their particular search. 4. Three major resources for locating Internet materials are the subject directory, the search engine, and content on the deep Web. These are useful for different types of queries. Be sure you understand the differences. 2 of 33 SUBJECT DIRECTORY For general, research oriented queries, involving an exploration of a topic, and when you want to view sites often recommended by experts, use a subject directory. Definition: A subject directory is a service that offers a collection of links to Internet resources submitted by site creators or evaluators and organized into subject categories. Directory services use selection criteria for choosing links to include, though the selectivity varies among services. Most directories are searchable. 3 of 33 There are two basic types of directories: academic and professional directories often created and maintained by subject experts to support the needs of researchers, and directories contained on commercial portals that cater to the general public and are competing for traffic. • Directories differ significantly in selectivity. Consider the policies of any directory that you visit. One challenge to this is the fact that not all directory services are willing to disclose either their policies or the names and qualifications of site reviewers. This is especially true of directories located on commercial portals. • 4 of 33 SEARCH ENGINES For targeted, multi-concept, and sometimes general queries, use a search engine. Definition: A search engine is a searchable database of Internet files collected by a computer program (called a wanderer, crawler, robot, worm, spider). Indexing is created from the collected files, e.g., title, full text, size, URL, etc. There is no selection criteria for the collection of files, though evaluation can be applied to the ranking of results. 5 of 33 A search engine might well be called a search engine service or a search service. As such, it consists of three components: Spider: Program that traverses the Web from link to link, identifying and reading pages • Index: Database containing a copy of each Web page gathered by the spider • • Search engine mechanism: Software that enables users to query the index and that usually returns results in relevancy ranked order Google is a famous example of a search engine. 6 of 33 DEEP WEB For targeted queries, when you are looking for non-textual information, use the DEEP WEB. Definition: The deep Web consists of information stored in searchable databases mounted on the Web. Information stored in these databases is accessible by user query. These databases usually search a targeted topic or aspect of a topic, though entire Web sites may be contained within a database. Search engine spiders cannot or will not index this information. The deep Web also consists of multimedia and image files, and files created in non-standard (non-HTML) file types such as Portable Document Format (PDF). Many search services offer separate search options for locating these files. AlltheWeb, AltaVista and MSN Search are just a few examples of services that offer specialized media searches, while Google integrates searches of PDF and other non-HTML files into its general search service. 7 of 33 HOW THE USERS FIND INFORMATION ON THE INTERNET There are a number of basic ways to access information on the Internet: 1. Go directly to a site if you have the address 2. Browse 3. Explore a subject directory 4. Conduct a search using a Web search engine 5. Explore the information stored in live databases on the Web, known as the "deep Web" 6. Join an e-mail discussion group, Usenet newsgroup, forums, etc. 8 of 33 Evaluating Internet Resources Purpose Audience Consider the intended audience of the page, based on its content, tone and style • • Does this mesh with your needs? 9 of 33 Consider the Source Web search engines often amass vast results, from memos to scholarly documents • • Many of the resulting items will be peripheral or useless for your research 10 of 33 Source • Author/producer is identifiable Author/producer has expertise on the subject as indicated on a credentials page. You may need to trace back in the URL (Internet address) to view a page in a higher directory with background information • 11 of 33 • Sponsor/location of the site is appropriate to the material as shown in the URL Examples: o .edu for educational or research material o .gov for government resources o .com for commercial products or commercially-sponsored sites • ~NAME in URL may mean a personal home page with no official sanction Mail-to link is offered for submission of questions or comments • 12 of 33 Content Accuracy Don't take the information presented at face value • Web sites are rarely refereed or reviewed, as are scholarly journals and books • Look for o point of view o evidence of bias • 13 of 33 Source of the information should be clearly stated, whether original or borrowed from elsewhere Comprehensiveness • Depth of information: determine if content covers a specific time period or aspect of the topic, or strives to be comprehensive • Use additional print and electronic sources to complement the information provided • Currency • Look to see if o Site has been updated recently, as reflected in the date on the page o Material contained on the page is current 14 of 33 Links • Links are relevant and appropriate Don't assume that the linked sites are the best available. Be sure to investigate additional sites on the topic • 15 of 33 Style and Functionality • Site is laid out clearly and logically with well organized subsections Writing style is appropriate for the intended audience Site is easy to navigate, including Clearly labeled Back, Home, Go To Top icons/links Internal indexing links on lengthy pages Links to remote sites all work Search capability is offered if the site is extensive • • o o • • 16 of 33 http://www.w3schools.com/html/ Introduction to HTML • HTML stands for Hyper Text Markup Language An HTML file is a text file containing small markup tags The markup tags tell the Web browser how to display the page An HTML file must have an htm or html file extension An HTML file can be created using a simple text editor • • • • 17 of 33 Title of page This is my first homepage. This text is bold Example Explained: The first tag in your HTML document is . This tag tells your browser that this is the start of an HTML document. The last tag in your document is . This tag tells your browser that this is the end of the HTML document. 18 of 33 The text between the tag and the tag is header information. Header information is not displayed in the browser window. The text between the tags is the title of your document. The title is displayed in your browser's caption. The text between the <body> tags is the text that will be displayed in your browser. The text between the <b> and </b> tags will be displayed in a bold font. 19 of 33 Note on HTML Editors: You can easily edit HTML files using a WYSIWYG (what you see is what you get) editor like FrontPage, Claris Home Page, or Adobe PageMill instead of writing your markup tags in a plain text file. But if you want to be a skillful Web developer, we strongly recommend that you use a plain text editor to learn your primer HTML. 20 of 33 HTML documents are text files made up of HTML elements. HTML elements are defined using HTML tags. HTML Tags • HTML tags are used to mark-up HTML elements HTML tags are surrounded by the two characters < and > The surrounding characters are called angle brackets HTML tags normally come in pairs like <b> and </b> The first tag in a pair is the start tag, the second tag is the end tag • • • • 21 of 33 • The text between the start and end tags is the element content HTML tags are not case sensitive, <b> means the same as <B> • 22 of 33 HTML Elements Remember the HTML example from the previous page: <html> <head> <title>Title of page This is my first homepage. This text is bold This is an HTML element: This text is bold 23 of 33 The HTML element starts with a start tag: The content of the HTML element is: This text is bold The HTML element ends with an end tag: The purpose of the tag is to define an HTML element that should be displayed as bold. 24 of 33 This is also an HTML element: This is my first homepage. This text is bold This HTML element starts with the start tag , and ends with the end tag . The purpose of the tag is to define the HTML element that contains the body of the HTML document. 25 of 33 Tag Attributes Tags can have attributes. Attributes can provide additional information about the HTML elements on your page. This tag defines the body element of your HTML page: . With an added bgcolor attribute, you can tell the browser that the background color of your page should be red, like this: . This tag defines an HTML table: . With an added border attribute, you can tell the browser that the table should have no borders:
Attributes always come in name/value pairs like this: name="value". Attributes are always added to the start tag of an HTML element. 26 of 33 Quote Styles, "red" or 'red'? Attribute values should always be enclosed in quotes. Double style quotes are the most common, but single style quotes are also allowed. In some rare situations, like when the attribute value itself contains quotes, it is necessary to use single quotes: name='John "ShotGun" Nelson' 27 of 33 The most important tags in HTML are tags that define headings, paragraphs and line breaks. Headings Headings are defined with the

to

tags.

defines the largest heading.

defines the smallest heading.

This

This

This

This

This
This is is is is is is a a a a a a heading
heading heading heading heading heading HTML automatically adds an extra blank line before and after a heading. 28 of 33 Paragraphs Paragraphs are defined with the

tag.

This is a paragraph

This is another paragraph

HTML automatically adds an extra blank line before and after a paragraph. Line Breaks The
tag is used when you want to end a line, but don't want to start a new paragraph. The
tag forces a line break wherever you place it. 29 of 33

This
is a para
graph with line breaks

The
tag is an empty tag. It has no closing tag. 30 of 33 Comments in HTML The comment tag is used to insert a comment in the HTML source code. A comment will be ignored by the browser. You can use comments to explain your code, which can help you when you edit the source code at a later date. Note that you need an exclamation point after the opening bracket, but not before the closing bracket. 31 of 33 HTML defines a lot of elements for formatting output, like bold or italic text, etc. • Lists • Links • Tables • Frames • Images 32 of 33 • http://www.w3schools.com/html/ Tables 33 of 33
Related docs
Internet promotion for Beginners
Views: 164  |  Downloads: 25
Consumers and the Internet
Views: 6  |  Downloads: 1
Internet Friendly Tips
Views: 3  |  Downloads: 0
Internet Marketing Checklist
Views: 0  |  Downloads: 0
Internet Marketing
Views: 185  |  Downloads: 7
23 Advantages To An Internet Business
Views: 16  |  Downloads: 1
History of the Internet
Views: 52  |  Downloads: 4
Tips on internet dating
Views: 17  |  Downloads: 0
Connecting to the Internet
Views: 1  |  Downloads: 0
premium docs
Other docs by MarvinGolden
CONFIDENTIALITY AGREEMENT
Views: 455  |  Downloads: 3
Form 3903 Moving Expenses
Views: 367  |  Downloads: 2
Educational reference check letter
Views: 474  |  Downloads: 1
Caldera Systems Inc Ammendments and By laws
Views: 170  |  Downloads: 0
Board Resolution to Acquire a Company
Views: 270  |  Downloads: 5
Letter of Intent for Joint Venture
Views: 2182  |  Downloads: 228
Hewlett Packard Co Ammendments and Bylaws
Views: 212  |  Downloads: 0
TRAVEL ITINERARY
Views: 577  |  Downloads: 47