It’s a language. That enable an unknown person to know how he/she can make web page.it easy to learn even you no need to take suffer for classes and burden of worries.
We start it from its name text that is HTML.stands for
H T M L
Hyper Text Markup Language
So its call markup language.
Let’s start from first step,
Tags:
This language has different features that call Tags, language tags.
Helping these tags we can concrete any web page. These are based on these shape< > that call angel brackets.
We write to put each word in angel brackets.
It comes in pair position. Like<h> and </h> Means every time we will write anything, we put in between that.
First tag in pair calls start tag and second is end tag.
These are also calls opening tags and closing tags.
Our HTML document contains on these tags.
Web Pages:
HTML documents are web pages.
It contain on tags and plain text.
Our search engine or explorer doesn’t show tags.
Some basic key features:
For webpage <html> and </html>
For page content <body> and </body>
For heading <h> and </h1>
For paragraph <p> and </p>
HOW WE CAN START:
It is easy to learn even you don’t need any web page, any software or any server.
Writing: it can write and edit on many editors like Dreamweaver and Visual Studio. And even on your simple note pad too.so for your first introductory class we use to edit HTML on simple note pad.it is a best platform for our new students.
For headings we use h
<h>its ma page heading</h>
For paragraph we use P
<p>this is paragraph</p> it start from
Start with start tag<p> and end with end tag</p>
Content should be this is my first paragraph.
If we want to give some links on our webpage a
<a href=”http:// codingvilla.com”>this is a link</a>
For image use img
For giving body element of page
Start element <body>
<p>this is my paragraph</p>
end element </body>
For html element