+ All Categories

Xhtml

Date post: 22-Dec-2014
Category:
Upload: program-in-interdisciplinary-computing
View: 356 times
Download: 3 times
Share this document with a friend
Description:
 
Popular Tags:
8
L I S 4 9 3 0 W e b A p p l i c a t i o n D e s i g n Web Developmen t with XHTML
Transcript
Page 1: Xhtml

L I S 4 9 3 0 W e b A p p l i c a t i o n D e s i g n

Web Developmentwith XHTML

Web Developmentwith XHTML

Page 2: Xhtml

L I S 4 9 3 0 W e b A p p l i c a t i o n D e s i g n

Who has used HTML?

Who has used XHTML?

What’s the difference?

Page 3: Xhtml

L I S 4 9 3 0 W e b A p p l i c a t i o n D e s i g n

XHTML is…

• eXtensible HyperText Markup Language• a W3C Recommendation• evolved from HTML (4.01) to comply with XML

syntax rules• stricter and cleaner than HTML 4• evolving into HTML 5

Page 4: Xhtml

L I S 4 9 3 0 W e b A p p l i c a t i o n D e s i g n

CSSprovides

visualdesign

XMLprovides

data

XHTMLdeliverscontent

to browser

Page 5: Xhtml

L I S 4 9 3 0 W e b A p p l i c a t i o n D e s i g n

Learning XHTML

• First learn HTML• Then apply XHTML rules:

– tags must be properly nested– tags must always be closed <br />– tags must be lowercase <ul> not <UL>– tag attributes must be in quotes– mandatory header elements must be included

Page 6: Xhtml

L I S 4 9 3 0 W e b A p p l i c a t i o n D e s i g n

Development Process

• Edit HTML in text editor • Save as .html or .htm file• Open file from Web browser• Further edit HTML in text editor• Save• Refresh page in Web browser

Page 7: Xhtml

L I S 4 9 3 0 W e b A p p l i c a t i o n D e s i g n

Development Process

• Development typically takes place on local PC• Finished Web site is uploaded to server

(staging or production)• Changes to Web site are made on local

machine and uploaded when completed• Two copies of the Web site are maintained,

one local and one on server.

Page 8: Xhtml

L I S 4 9 3 0 W e b A p p l i c a t i o n D e s i g n

Development Process

• Web development tools are often used to simplify the development process.


Recommended