web site design & management

34

Upload: kezia

Post on 05-Feb-2016

35 views

Category:

Documents


0 download

DESCRIPTION

Web Site Design & Management. Class One. Attendance Questionnaire Introductions Class Policies About the class. FTP Code Assignments. Agenda. Attendance. Sign it at every class. No signature = absent Attendance Policy/Late Policy Please correct your name on the attendance sheet. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Web Site Design & Management
Page 2: Web Site Design & Management

Web Site Design & Management

Class One

Page 3: Web Site Design & Management

Agenda

• Attendance• Questionnaire• Introductions• Class Policies• About the class

• FTP• Code• Assignments

Page 4: Web Site Design & Management

Attendance

• Sign it at every class.

• No signature = absent

• Attendance Policy/Late Policy

• Please correct your name on the attendance sheet.

See Attendance policy in Blackboard

Page 5: Web Site Design & Management

Questionnaire

• To help me plan the rest of the semester

• Please fill out as completely as possible

• This is NOT graded.

• It is OK not to know an answer. If you don’t know the answer, just write “DK”

Page 6: Web Site Design & Management

Introduction

• Who am I?• Please call me Pam• Where can I be reached? • Contact me through Blackboard or• [email protected] • Contact me by calling CCV

(all this information is also in Blackboard)

Page 7: Web Site Design & Management

Email protocol

• Your name

• Your class & day

• A pertinent subject line

• Please do not SHOUT at me unless you mean it.

• I expect email – I expect questions

• If I don’t reply in 24 hours, please resend.

Page 8: Web Site Design & Management

Now introduce yourself!

• Name

• Where you live & a little about yourself.

• Any web design experience?

• Name one thing you hope to learn in this class.

Page 9: Web Site Design & Management

A few important class policies

Page 10: Web Site Design & Management

NOFOOD AT

COMPUTErS

Page 11: Web Site Design & Management

NOGAMES

Page 12: Web Site Design & Management

NOEMAIL

Page 13: Web Site Design & Management

NOInstant

Messaging

Page 14: Web Site Design & Management

NOCrunchy

Food

Page 15: Web Site Design & Management

NOMyspace

Page 16: Web Site Design & Management
Page 17: Web Site Design & Management

About the course

• Description, expectations, grading

• Attendance Policy

• Homework Policy

• Books & Software

All of these are in Blackboard!

Page 18: Web Site Design & Management

Blackboard

• Log In

• Find Course Policies

• Take Sample Quiz

• Keep Blackboard open, we’ll use it later

• Go on break.

Page 19: Web Site Design & Management

FTP server information

• stweb.ccv.edu

• Your user name and password

• Wednesday class is CIS-2220-VU02

• Monday class is CIS-2220-VU04

• You should have a folder inside of that.

Page 20: Web Site Design & Management

Code

• Code is plain text

• How do you see the code on a web page?– View > Source

• What is a tag?< element>

Page 21: Web Site Design & Management

HTML open (start) tag

• Opening bracket

• Tag name

• Attributes

• Closing bracket

<h1>

Page 22: Web Site Design & Management

HTML close (end ) tag

• Opening bracket• Tag name• Attributes• /• Closing bracket• (there are some exceptions, we’ll see them soon)

</h1>

Page 23: Web Site Design & Management

HTML element

• Open tag, content, close tag

<p>

This is the content of the paragraph element.

</p>

Page 24: Web Site Design & Management

There are “empty elements”

• They don’t have the closing tag.

• Also called “self closing” tags

• We’ll learn about these later.– <img />– <br />– <hr />– <input />

Page 25: Web Site Design & Management

There are “attributes”

• Attributes define a property of a tag

• name=“value”

• Goes within the start tag

• Can have multiple attributes in one tag

<font color=“red” face=“arial”>

<p align=“center”>

Page 26: Web Site Design & Management

A basic web page template

<html><head><title> The title of your web page</title></head><body>

</body></html>

All visible content of your page goes between the two body tags, in HTML elements

Page 27: Web Site Design & Management

Process

• Write your code in a text editor (Notepad)

• SAVE AS filename.html

• Create a basic web page template and reuse it over and over.

Page 28: Web Site Design & Management

Tips to make your coding life easier

• Organize your files first

• Consistency

• Write the closing tag immediately after you write the opening tag.

• Indent

• Know where you are saving things

• Don’t have lots of windows open at once

Page 29: Web Site Design & Management

More tips/class policies

• small letters

• no spaces in file names, use a hyphen to separate things for clarity

• save as .html

Page 30: Web Site Design & Management

Copy and Paste is your friend

Page 31: Web Site Design & Management

Copy & Paste is your friend

• Doesn’t mean to copy someone else’s code

• It helps you avoid typos

• Make yourself a standard template and use it over and over.

Page 32: Web Site Design & Management

Terminology

• Server• Browser• Case-sensitive• File extension• stweb• ftp• WYSIWYG editor

• Source code• Text editor• Usability• Upload• Host• url• domain

Page 33: Web Site Design & Management

Let’s Code

Page 34: Web Site Design & Management

Assignments

• Linked in Blackboard & on class website

• Journals

• Be aware of which class we are in– You may see homework posted in advance

• Email me with questions

• I expect problems this first week.