ite212l midterm coverage

Post on 11-Apr-2017

1.008 Views

Category:

Education

0 Downloads

Preview:

Click to see full reader

TRANSCRIPT

PREZIITE212L MIDTERM COVERAGE

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

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.

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

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

HTMLITE212L MIDTERM COVERAGE

What is HTML?

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

What is HTML?

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

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

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.

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

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:

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

CSS Selectors

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

top related