Contents: File transfer | Webpage code
Every UVic student, staff and faculty has an opportunity to create their own web page/site on the UVic server, with 1GB webspace to host files, webpages, research, etc.
Based on your netlinkID, your website address would be http://web.uvic.ca/~netLinkID
For more detailed instructions, check out the University Systems Help Centre for Personal Publishing and Hosting.
Wordpress websites are also available through the UVic Online Academic Community.
Set-up FTP file transfer
- Download a secure file transfer protocol (ftp) program, with which to transfer files to your website
- e.g. Filezilla
- Connect to the ftp program, and input ftp information as per: UVic ftp hosting info
-
Host: unix.uvic.ca
-
Username: netlinkID
-
Password: netlinkID password
-
Port: 22 (secure - sftp) or 21 (insecure - ftp)
-
- When ftp is connected, choose the source file folder location to see list of files that can be transferred to UVic webspace:
- Folders can be created to organize files on UVic server space:
- To restrict access:
Create HTML Webpage
- use the following format to create a basic, mobile-friendly HTML page (replace CAPITAL WORDS, except DOCTYPE & UTF, with your specific content):
<!DOCTYPE html>
<html lang="en">
<title>THIS TITLE SHOWS IN BROWSER TAB</title>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<meta name="description" content="DESCRIBE WEBPAGE CONTENTS HERE">
<meta name="keywords" content="USE WEBPAGE KEYWORDS
(separated by, commas) TO ASSIST SEARCH ENGINES">
<meta name="author" content="WEBPAGE AUTHOR’S NAME">
</head>
<body>
PAGE CONTENT GOES HERE
</body>
</html> - Tips to Format text
- Tips to Give your page style
- Name your html file FILENAME.htm
- Upload to UVic server webspace as per ftp instructions above
- Access uploaded file url address:
http://web.uvic.ca/~netLinkID/FILENAME.htm