শনিবার, ১২ মার্চ, ২০১৬

Basic HTML tags

Every HTML documents starts with a tag like: < !DOCTYPE html> .

The HTML document itself begins with <html> and ends with </html> .

The visible part of the HTML document is between <body> and </body> .

Example:

< !DOCTYPE html>
< html>
< body>
< p> My first paragraph. < /p>
< /body >
< /html>


So the HTML will be like:


If you run this program, we will get output like this:

Share:

What is HTML

HTML (Hypertext Markup Language) is the set of markup symbols or codes inserted in a file intended for display on a World Wide Web browser page.
The markup tells the Web browser how to display a Web page's words and images
for the user.
Each individual markup code is referred to as an element (but many people also
refer to it as a tag ).
Some elements come in pairs that indicate when some display effect is to
begin and when it is to end.

Share: