Web Programming
Dr. M. A. Jamal Mohamed Yaseen Zubeir
PG and Research Department of Computer Science
Jamal Mohamed College (Autonomous)
Tiruchirappalli – 620 020
, UNIT - I
• Introduction To HTML and XHTML: Hyper Text Markup Language –
Origin and Evolution – HTML Basics – Headings – Paragraphs – Tables
– Forms – CSS – *Levels of Style Sheets* – Different forms of
Selectors.
,HTML Introduction
• HTML, or HyperText Markup Language is the standard markup
language used to create web pages. It is a combination of Hypertext
and Markup language. The Hypertext defines the link between web
pages, and Markup defines the text document within tags to structure
the web pages.
• HTML is human-readable and uses tags to define what manipulation
has to be done on the text.
, What is HTML?
• HTML stands for HyperText Markup Language and it is used to create webpages. It uses HTML tags and attributes to describe the
structure and formatting of a web page.
• HTML consists of various elements, that are responsible for telling search engines how to display page content. For example, headings,
lists, images, links, and more.
• Example:
<!DOCTYPE html>
<html>
<head>
<title>First HTML Code</title>
</head>
<body>
<h2>Welcome To Jamal</h2>
<p>Hello Students</p>
</body>
</html>
Dr. M. A. Jamal Mohamed Yaseen Zubeir
PG and Research Department of Computer Science
Jamal Mohamed College (Autonomous)
Tiruchirappalli – 620 020
, UNIT - I
• Introduction To HTML and XHTML: Hyper Text Markup Language –
Origin and Evolution – HTML Basics – Headings – Paragraphs – Tables
– Forms – CSS – *Levels of Style Sheets* – Different forms of
Selectors.
,HTML Introduction
• HTML, or HyperText Markup Language is the standard markup
language used to create web pages. It is a combination of Hypertext
and Markup language. The Hypertext defines the link between web
pages, and Markup defines the text document within tags to structure
the web pages.
• HTML is human-readable and uses tags to define what manipulation
has to be done on the text.
, What is HTML?
• HTML stands for HyperText Markup Language and it is used to create webpages. It uses HTML tags and attributes to describe the
structure and formatting of a web page.
• HTML consists of various elements, that are responsible for telling search engines how to display page content. For example, headings,
lists, images, links, and more.
• Example:
<!DOCTYPE html>
<html>
<head>
<title>First HTML Code</title>
</head>
<body>
<h2>Welcome To Jamal</h2>
<p>Hello Students</p>
</body>
</html>