© 2017, Mike Murach & Associates, Inc.

Slides:



Advertisements
Similar presentations
Murach’s JavaScript, C2© 2009, Mike Murach & Associates, Inc. Slide 1.
Advertisements

Murach’s JavaScript, C1© 2009, Mike Murach & Associates, Inc. Slide 1.
© 2012, Mike Murach & Associates, Inc.
CSS Cascading Style Sheets A very brief introduction CSS, Cascading Style Sheets1.
Chapter 1 Murach's JavaScript and jQuery, C1© 2012, Mike Murach & Associates, Inc.Slide 1.
Chapter 4 Murach's JavaScript and jQuery, C4© 2012, Mike Murach & Associates, Inc.Slide 1.
Chapter 6 Murach's JavaScript and jQuery, C6© 2012, Mike Murach & Associates, Inc.Slide 1.
Web Basics: HTML/CSS/JavaScript What are they?
© 2008, Mike Murach & Associates, Inc.
© 2016, Mike Murach & Associates, Inc.
© 2017 Akhilesh Bajaj, All Rights Reserved
© 2009, Mike Murach & Associates, Inc.
© 2016, Mike Murach & Associates, Inc.
© 2016, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2016, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2002, Mike Murach & Associates, Inc.
ITI 133 HTML5 Desktop and Mobile Level I
© 2010, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2002, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2002, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
HTML5 Level I Session II Chapter 3 - How to Use HTML to Structure a Web Page
© 2010, Mike Murach & Associates, Inc.
© 2002, Mike Murach & Associates, Inc.
© 2015, Mike Murach & Associates, Inc.
© 2002, Mike Murach & Associates, Inc.
© 2002, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2002, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2015, Mike Murach & Associates, Inc.
© 2014, Mike Murach & Associates, Inc.
The University of Tulsa
© 2002, Mike Murach & Associates, Inc.
© 2002, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
Web Design and Development
© 2002, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2007, Mike Murach & Associates, Inc.
HTML MIS 2402 Jeremy Shafer Department of MIS Fox School of Business
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
© 2010, Mike Murach & Associates, Inc.
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
© 2017, Mike Murach & Associates, Inc.
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
© 2008, Mike Murach & Associates, Inc.
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
Presentation transcript:

© 2017, Mike Murach & Associates, Inc. Chapter 1 Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

An HTML file (index.html) in a browser with no CSS applied to it Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The code for the HTML file named index.html Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The HTML file named index.html (continued) Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The web page in a browser after CSS has been applied to it Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The link element that applies the CSS file Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The CSS file named email_list.css (continued) Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The web page in a browser with JavaScript used for data validation Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The code for the JavaScript file (email_list.js) Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The JavaScript file (continued) Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The primary HTML5 semantic elements Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

A page that’s structured with HTML5 elements Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The HTML in a web browser Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The div and span elements Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

HTML div elements for a JavaScript application Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

HTML span elements for a JavaScript application Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The basic HTML attributes Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

HTML that uses these attributes Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The HTML in a web browser with a tooltip displayed for the text box Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

Two ways to provide styles Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

A head element that includes two style sheets Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

HTML that can be selected by type, id, or class Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

CSS style rules that select by type, id, and class Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The HTML elements displayed in a browser Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The CSS file for a typical application in this book Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

© 2017, Mike Murach & Associates, Inc. Terms Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The web page at c:/javascript/book_apps/ch01/email_list/index.html Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

Four ways to run an HTML page that’s on your own server or computer Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

Two ways to run an HTML page on the Internet Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.

The components of an HTTP URL on the Internet Murach's JavaScript and jQuery (3rd Ed.) © 2017, Mike Murach & Associates, Inc.