ite212l midterm coverage

14
PREZI ITE212L MIDTERM COVERAGE

Upload: gabriel-darwin-lopez

Post on 11-Apr-2017

1.007 views

Category:

Education


0 download

TRANSCRIPT

Page 1: ITE212L Midterm Coverage

PREZIITE212L MIDTERM COVERAGE

Page 2: ITE212L Midterm Coverage

Prezi is a cloud-based (SaaS) presentation software and storytelling tool for presenting ideas on a virtual canvas.

Page 3: ITE212L Midterm Coverage

The product employs a zooming user interface (ZUI), which allows users to zoom in and out of their presentation media, and allows users to display and navigate through information within a 2.5D or parallax 3D space on the Z-axis.

Page 4: ITE212L Midterm Coverage

Prezi was officially established in 2009 by co-founders Adam Somlai-Fischer, Peter Halacsy and Peter Arvai.

Page 5: ITE212L Midterm Coverage

Prezi Desktop Editor allows users to work on the presentation off- line which come in .pez file format.

Page 6: ITE212L Midterm Coverage

HTMLITE212L MIDTERM COVERAGE

Page 7: ITE212L Midterm Coverage

What is HTML?

HTML is a markup language for describing web documents (web pages).HTML stands for Hyper Text Markup Language

Page 8: ITE212L Midterm Coverage

What is HTML?

HTML is a markup language for describing web documents (web pages).HTML stands for Hyper Text Markup Language

Page 9: ITE212L Midterm Coverage

What is HTML?

HTML is a markup language for describing web documents (web pages).HTML stands for Hyper Text Markup LanguageA markup language is a set of markup tagsHTML documents are described by HTML tagsEach HTML tag describes different document content

Page 10: ITE212L Midterm Coverage

Example ExplainedThe DOCTYPE declaration defines the document type to be HTML

The text between <html> and </html> describes an HTML documentThe text between <head> and </head> provides information about the documentThe text between <title> and </title> provides a title for the documentThe text between <body> and </body> describes the visible page contentThe text between <h1> and </h1> describes a headingThe text between <p> and </p> describes a paragraphUsing this description, a web browser can display a document with a heading and a paragraph.

Page 11: ITE212L Midterm Coverage

HTML Tags

HTML tags are keywords (tag names) surrounded by angle brackets:<tagname>content</tagname>HTML tags normally come in pairs like <p> and </p>The first tag in a pair is the start tag, the second tag is the end tagThe end tag is written like the start tag, but with a slash before the tag name

Page 12: ITE212L Midterm Coverage

Web Browsers

The purpose of a web browser (Chrome, IE, Firefox, Safari) is to read HTML documents and display them.The browser does not display the HTML tags, but uses them to determine how to display the document:

Page 13: ITE212L Midterm Coverage

Styling HTML with CSS

CSS stands for Cascading Style SheetsStyling can be added to HTML elements in 3 ways:

Inline - using a style attribute in HTML elementsInternal - using a <style> element in the HTML <head> sectionExternal - using one or more external CSS files

Page 14: ITE212L Midterm Coverage

CSS Selectors

In CSS, selectors are patterns used to select the element(s) you want to style.