1 / 6

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

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

jill
Download Presentation

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

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 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. • ... CS 142 Lecture Notes: HTML

  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. CS 142 Lecture Notes: HTML

  3. <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 NestedTags CS 142 Lecture Notes: HTML

  4. 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. • ... <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> ... CS 142 Lecture Notes: HTML

  5. <?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> CS 142 Lecture Notes: HTML

  6. CS 140 Lecture Notes: File Systems

More Related