Hello and welcome to Ben Dunkle's Canisius College web site. Choose a link from the left.

Cyberduck reference for connecting to Chupacabra from off campus


Download cyberduck, click here

Basic code for your web pages

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Title goes here</title>
<link href="style.css" type="text/css" rel="stylesheet" />

</head>
<body>
 
 
</body>
</html>

Basic code for your style.css file

/*adjust settings below as necessary*/
/*Eliminate all default margins and paddings*/
* {
margin:0px;
padding:0px;
}

/*Make a universal type size of 20pts*/
html {
font-size:125%;
}

/*Set body to 50%, so that 1.0em=10pts, 1.1em=11pts, etc.*/
body {
font: 50% verdana;
}

/*Turn off borders that FF puts on images that are links*/
img {
border: none;
}