1 / 34

Web Site Design & Management

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.

kezia
Télécharger la présentation

Web Site Design & Management

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Web Site Design & Management Class One

  2. Attendance Questionnaire Introductions Class Policies About the class FTP Code Assignments Agenda

  3. 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

  4. 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”

  5. Introduction • Who am I? • Please call me Pam • Where can I be reached? • Contact me through Blackboard or • pamscan@gmail.com • Contact me by calling CCV (all this information is also in Blackboard)

  6. 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.

  7. 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.

  8. A few important class policies

  9. NOFOOD AT COMPUTErS

  10. NOGAMES

  11. NOEMAIL

  12. NOInstantMessaging

  13. NOCrunchy Food

  14. NOMyspace

  15. why?

  16. About the course • Description, expectations, grading • Attendance Policy • Homework Policy • Books & Software All of these are in Blackboard!

  17. Blackboard • Log In • Find Course Policies • Take Sample Quiz • Keep Blackboard open, we’ll use it later • Go on break.

  18. 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.

  19. Code • Code is plain text • How do you see the code on a web page? • View > Source • What is a tag? < element>

  20. HTML open (start) tag • Opening bracket • Tag name • Attributes • Closing bracket <h1>

  21. HTML close (end ) tag • Opening bracket • Tag name • Attributes • / • Closing bracket • (there are some exceptions, we’ll see them soon) </h1>

  22. HTML element • Open tag, content, close tag <p> This is the content of the paragraph element. </p>

  23. 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 />

  24. 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”>

  25. 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

  26. 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.

  27. 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

  28. More tips/class policies • small letters • no spaces in file names, use a hyphen to separate things for clarity • save as .html

  29. Copy and Paste is your friend

  30. 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.

  31. Server Browser Case-sensitive File extension stweb ftp WYSIWYG editor Source code Text editor Usability Upload Host url domain Terminology

  32. Let’s Code

  33. 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.

More Related