Session 1: Researching on the internet

Thursday, 24 July, 1-2pm, 092-001 Aus. Aid Lecture theatre

Introduction

Search vs. Index

Search tips

Proper attribution

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 httphttp://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 httphttp://www.usp.ac.fj/admin/general.htm#The%20University%20Region

Checking validity of online resources

Session 2

Thursday, 31 July, 1-2pm, 092-001 Aus. Aid Lecture theatre

Content from the User's perspective

Session 3

Thursday, 7 Aug, 1-2pm, 092-001 Aus. Aid Lecture theatre

Content Categorization

taxonomy: diving your content into a handful of sections

Site maps

Session 4

Thursday, 14 Aug, 1-2pm, 092-001 Aus. Aid Lecture theatre

Navigation Design

Structuring the Interface

Session 5

Thursday, 21 Aug, 1-2pm, 092-001 Aus. Aid Lecture theatre

XHTML part 1

Code used in this class

<html>
<head>
<title>Our first webpage</title>
</head>
<body>
Welcome to our first webpage!
<p />
Here is the <a href="httphttp://www.student.usp.ac.fj/">USP site</a>.

</body>
</html>

Session 6

Thursday, 28 Aug, 1-2pm, 092-001 Aus. Aid Lecture theatre

XHTML part 2


<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="httphttp://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>


CSS


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;
}



Last edited on March 1, 2007 4:28 pm.