/
CS 142: Web Applications CS 142: Web Applications

CS 142: Web Applications - PowerPoint Presentation

alexa-scheidler
alexa-scheidler . @alexa-scheidler
Follow
378 views
Uploaded On 2016-06-10

CS 142: Web Applications - PPT Presentation

httpwebstanfordeduclasscs142 Instructor John Ousterhout httpwebstanfordeduouster OHstir howt CS 142 Lecture Notes HTML Slide 2 Introduction There are several good reasons for taking ID: 356199

web html slide applications html web applications slide 142 cs142 notes lecture variety introduction learn good interesting concepts reasons

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "CS 142: Web Applications" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

CS 142: Web Applications

http://web.stanford.edu/class/cs142

Instructor: John Ousterhout

http://web.stanford.edu/~ouster

“OH-stir-

howt

”Slide2

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.

...Slide3

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.Slide4

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>

MarkupTags

Nested

TagsSlide5

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>...IntroductionThere 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....Slide6

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>Slide7

CS 140 Lecture Notes: File Systems

Slide 7