Thursday, 24 July, 1-2pm, 092-001 Aus. Aid Lecture theatre
http://www.google.com ) work by looking for sites that contain specific keywords
http://dmoz.org/ ) or Yahoo (
http://www.yahoo.com ) let you drill down through categories to the topic you want.
http://www.academicinfo.us/
http://lii.org/search/file/busfinjobs)
http://infomine.ucr.edu/)choosing appropriate web research tools at
http://www.lib.berkeley.edu/TeachingLib/Guides/Internet/Strategies.html
a quick set of search tips at
http://www.sc.edu/beaufort/library/lesson7.html
a full detailed step by step tutorial on searching at
http://www.sc.edu/beaufort/library/bones.html
The Art of Getting Help (
http://dlis.gseis.ucla.edu/people/pagre/getting-help.html ) is a gem from Phil Agre (
http://dlis.gseis.ucla.edu/people/pagre ), a wealth of good Web For Ed. wisdom.
Herrington, Jan & Oliver, Ron (1995). Critical characteristics of situated learning: Implications for the instructional design of multimedia. Australian Society for Computers in Learning In Tertiary Education Conference, 1995. Retrieved December 5, 2002 from
http://www.ascilite.org.au/conferences/melbourne95/smtu/papers/herrington.pdf
The University Region (1999). The University of the South Pacific. Retrieved December 2, 2002 from
http://www.usp.ac.fj/admin/general.htm#The%20University%20Region
http://tiger.towson.edu/users/wsmith5/threewebevaluation.htm ) uses a good set of criteria that you can apply to your own research.
Resources for evaluating internet contentThursday, 31 July, 1-2pm, 092-001 Aus. Aid Lecture theatre
Thursday, 7 Aug, 1-2pm, 092-001 Aus. Aid Lecture theatre
taxonomy: diving your content into a handful of sections
Card Stacks on line or download for
Mac or
PCThursday, 14 Aug, 1-2pm, 092-001 Aus. Aid Lecture theatre
Thursday, 21 Aug, 1-2pm, 092-001 Aus. Aid Lecture theatre
<html>
<head>
<title>Our first webpage</title>
</head>
<body>
Welcome to our first webpage!
<p />
Here is the <a href="
http://www.student.usp.ac.fj/">USP site</a>.
</body>
</html>
Thursday, 28 Aug, 1-2pm, 092-001 Aus. Aid Lecture theatre
<html>
<head>
<title>The second page</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<h1>H1 heading</h1>
<h2>h2 heading</h2>
<h3>h3 heading</h2>
This is the second webpage we are creating. Here is a <a href="index.html">link back to page 1</a>.
<p />
<a href="
http://www.grographics.com/work.html"><img src="image.jpg" /></a>
<p />Here is some more text in a new paragraph.
<br />And now we have a line break.
</body>
</html>
body {
font-family:arial;
color:red;
font-size:200px;
border:10px solid black;
}
h1 {
font-family:georgia;
color:green;
border-top:20px solid gray;
background-color:red;
}