You can learn html only 3 Lessons.
lesson1 lesson2 lesson3
HTML Introduction
HTML Example
Html Notepad
Free Download
<html>
<body>
<h1><u>My First Heading</u></h1>
<p>My first paragraph.</p>
</body>
</html>
Example
The DOCTYPE declaration defines the document type
The text between <html> and </html> describes the web page
The text between <body> and </body> is the visible page content
The text between <h1> and </h1> is displayed as a heading
The text between <u1> and </u1> is displayed as a underline
The text between <p> and </p> is displayed as a paragraph
What is HTML?
HTML is a language for describing web pages.
HTML stands for Hyper Text Markup Language
HTML is a markup language
A markup language is a set of markup tags
The tags describe document content
HTML documents contain HTML tags and plain text
HTML documents are also called web pages
HTML Introduction
HTML Example
Html Notepad
Free Download
<html>
<body>
<h1><u>My First Heading</u></h1>
<p>My first paragraph.</p>
</body>
</html>
Example
The DOCTYPE declaration defines the document type
The text between <html> and </html> describes the web page
The text between <body> and </body> is the visible page content
The text between <h1> and </h1> is displayed as a heading
The text between <u1> and </u1> is displayed as a underline
The text between <p> and </p> is displayed as a paragraph
What is HTML?
HTML is a language for describing web pages.
HTML stands for Hyper Text Markup Language
HTML is a markup language
A markup language is a set of markup tags
The tags describe document content
HTML documents contain HTML tags and plain text
HTML documents are also called web pages
Step 1: Start Notepad:
We will go Start button
All Programs
Accessories
Notepad
Type your HTML code into your Notepad:
Step 2: Edit Your HTML with Notepad:
save u file .html
Exmple
your file name asad
you will save asad.html
open with any browser
We have created Html web page.
Head
Example:
<html>
<head>
<title> welcome to the asad website </title>
</head>
<body>
The content of the document. . . . .
</body>
</html>
Next >>>