Download presentation
Presentation is loading. Please wait.
Published byArlene Thornton Modified over 9 years ago
1
Administration, Coverage, Review
2
Exam Administration Midterm exam is in class from 5:15 – 6:30PM on Thursday Feb 20 th. The exam is open book and open notes. No electronic device is allowed during the exam, such as cellphones, laptops, etc. You can use both pencil and pen for the exam. Absolutely no collaboration with other classmates.
3
Coverage The topics we covered from Lecture 1 to Lecture 6. Study lecture materials, assignments, and online references. Topics include, not limited to, Client-Server architecture, HTTP, IP address, HTML5, Cascading Style Sheet (CSS). Types of Questions True or false Multiple choices (Best answer) Short answers Code-related questions.
4
Review Client-Server architecture A client initiates a request message to the server; the server generates a response message (HTTP document) Client Bob Yahoo Server Internet
5
HTTP Hypertext Transport Protocol A communication protocol which specifies how web clients and servers should communicate. HTTP request message Start Line, Header fields, Blank line, Message body. HTTP request method GET POST
6
HTTP HTTP Response Message Status Line Header fields Blank line Message body
7
HTML5 HTML5 is the new standard for HTML. It can display everything including text, images, video, and animations HTML5 is cross-platform. It will display content on smart- phones, tablets, computers or a Smart TV. HTML5 elements and attributes,,,,,,, etc. id, style, width, height, background-color, etc
8
CSS Block element vs Inline Element vs Why do we need separate semantics from presentation of a web page? CSS core syntax Selector Property Value Separator(;)
9
CSS Block element vs Inline Element vs Why do we need separate semantics from presentation of a web page? CSS core syntax Selector Property Value Separator(;)
10
CSS ID and CLASS selectors can be prefixed by an element type name. For example, span.special{background-color: red}. Descendant Selectors ul span{color: red} Class selector can be included in the ancestor list.special span{color: yellow}
11
CSS Positioning By default, a HTML document has a normal flow. Alternatives Relative position Float position Absolute position What is Inline CSS, Internal CSS, and External CSS?
12
Cascading of Style Sheet Rules Please review lecture 5 carefully which covers Cascading rules. When to use Cascading rules? Rule cascading: a multistage sorting process that selects a single declaration that will supply the property value For example, li.special{color: red}, *.special{color: green}.header1{font-size:50pt}, #header{font-size:30pt} FSU
13
Inheritance When to use inheritance? An element inherits a value for one of its properties by checking to see if its parent element has a value for that property. If so, inheriting the parent’s value.
14
Good Luck!
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.