Web Technology
(NCS-504)
Prepared By:
Rohit Rana
Asst. Professor, CSE
, QIP-3
UNIT-I
Lecture Number Topic Description
Lecture-1 Introduction to HTML, HTML Basic Tags
Lecture-2 HTML Images, Links, Style
Lecture-3 HTML Tables, HTML Lists
Lecture-4 HTML Frames, HTML Forms
Lecture-5 HTML Forms
Lecture-6 CSS
Lecture-7 XML, XML Documents
Lecture-8 DTD
Lecture-9 XML Schema
Lecture-10 XML Parsers
! Vidya College of Engineering, Meerut
, Lecture No. 1
Introduction to HTML
What is HTML?
HTML stands for Hyper Text Markup Language
HTML is not a programming language, it is a markup language
A markup language is a set of markup tags
Telling the browser what to do, and what props to use.
A series of tags that are integrated into a text document.
Tags are:
surrounded with angle brackets like this
• <B> or <I>.
Most tags come in pairs
• exceptions: <P>, <br>, <li> tags …
The first tag turns the action on, and the second turns it off.
! Vidya College of Engineering, Meerut
, Lecture No. 1
Introduction to HTML
The second tag (off switch) starts with a forward slash.
• For example ,<B> text </B>
can embedded, for instance, to do this:
• <HEAD><TITLE> Your text </HEAD></TITLE> it won't work.
• The correct order is <HEAD><TITLE> Your text </TITLE></
HEAD>
not case sensitivity.
Many tags have attributes.
o For example, <P ALIGN=CENTER> centers the paragraph
following it.
Some browsers don't support the some tags and some attributes.
! Vidya College of Engineering, Meerut 4
(NCS-504)
Prepared By:
Rohit Rana
Asst. Professor, CSE
, QIP-3
UNIT-I
Lecture Number Topic Description
Lecture-1 Introduction to HTML, HTML Basic Tags
Lecture-2 HTML Images, Links, Style
Lecture-3 HTML Tables, HTML Lists
Lecture-4 HTML Frames, HTML Forms
Lecture-5 HTML Forms
Lecture-6 CSS
Lecture-7 XML, XML Documents
Lecture-8 DTD
Lecture-9 XML Schema
Lecture-10 XML Parsers
! Vidya College of Engineering, Meerut
, Lecture No. 1
Introduction to HTML
What is HTML?
HTML stands for Hyper Text Markup Language
HTML is not a programming language, it is a markup language
A markup language is a set of markup tags
Telling the browser what to do, and what props to use.
A series of tags that are integrated into a text document.
Tags are:
surrounded with angle brackets like this
• <B> or <I>.
Most tags come in pairs
• exceptions: <P>, <br>, <li> tags …
The first tag turns the action on, and the second turns it off.
! Vidya College of Engineering, Meerut
, Lecture No. 1
Introduction to HTML
The second tag (off switch) starts with a forward slash.
• For example ,<B> text </B>
can embedded, for instance, to do this:
• <HEAD><TITLE> Your text </HEAD></TITLE> it won't work.
• The correct order is <HEAD><TITLE> Your text </TITLE></
HEAD>
not case sensitivity.
Many tags have attributes.
o For example, <P ALIGN=CENTER> centers the paragraph
following it.
Some browsers don't support the some tags and some attributes.
! Vidya College of Engineering, Meerut 4