http://web.stanford.edu/~ouster OH -stir-howt Introduction There - - PowerPoint PPT Presentation

http web stanford edu ouster
SMART_READER_LITE
LIVE PREVIEW

http://web.stanford.edu/~ouster OH -stir-howt Introduction There - - PowerPoint PPT Presentation

CS 142: Web Applications http://web.stanford.edu/class/cs142 Instructor: John Ousterhout http://web.stanford.edu/~ouster OH -stir-howt Introduction There are several good reasons for taking CS142: Web Applications : You will learn a


slide-1
SLIDE 1

CS 142: Web Applications http://web.stanford.edu/class/cs142 Instructor: John Ousterhout http://web.stanford.edu/~ouster “OH-stir-howt”

slide-2
SLIDE 2

CS 142 Lecture Notes: HTML Slide 2

Introduction

There are several good reasons for taking CS142: Web Applications:

  • You will learn a variety of interesting concepts.
  • It may inspire you to change the way software is

developed.

  • It will give you the tools to become fabulously wealthy.

...

slide-3
SLIDE 3

CS 142 Lecture Notes: HTML Slide 3

Introduction There are several good reasons for taking CS142: Web Applications: You will learn a variety of interesting concepts. It may inspire you to change the way software is developed. It will give you the tools to become fabulously wealthy.

slide-4
SLIDE 4

CS 142 Lecture Notes: HTML Slide 4

<h1>Introduction</h1> <p> There are several good reasons for taking <i>CS142: Web Applications</i>: </p> <ul> <li> You will learn a variety of interesting concepts. </li> <li> It may inspire you to change the way software is developed. </li> <li> It will give you the tools to become fabulously wealthy. </li> </ul> Markup Tags Nested Tags

slide-5
SLIDE 5

CS 142 Lecture Notes: HTML Slide 5

<h1>Introduction</h1> <p> There are several good reasons for taking <i>CS142: Web Applications</i>: </p> <ul> <li> You will learn a variety of interesting concepts. </li> ...

Introduction

There are several good reasons for taking CS142: Web Applications:

  • You will learn a variety of interesting concepts.
  • It may inspire you to change the way software is

developed.

  • It will give you the tools to become fabulously wealthy.

...

slide-6
SLIDE 6

CS 142 Lecture Notes: HTML Slide 6

<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Hello World</title> </head> <body> <p>Hello world!</p> </body> </html>

slide-7
SLIDE 7

CS 140 Lecture Notes: File Systems Slide 7