Basics of html
Basics of html:-
If you want to make any web based program you should you need to know the html(Hyper Text Markup Language) language. Using our online HTML editor, you can modify the example program or make new HTML and click the button to see the output instantly without any local machine editor like notepad, notepad++.
Syntax:-
<HTML>
<HEAD>
<TITLE>-------</TITLE>
</HEAD>
<BODY>
----------
----------
----------
</BODY>
</HTML>
This is the basic syntax of HTML
Explanation of the Syntax:
1.You should need to write your program with in the <HTML> and </HTML> tag.
2. Inside the <HEAD> tag only you can specify your title of your page using <TITLE> tag.
3. <BODY> tag is the very important, all of your HTML tags and controls are write here only.
4. When the tags are closed you should close the tag using "/"
Example Program:- (Editor)
Output:-
Advertisement
Screen Shots:-
If you want to make any web based program you should you need to know the html(Hyper Text Markup Language) language. Using our online HTML editor, you can modify the example program or make new HTML and click the button to see the output instantly without any local machine editor like notepad, notepad++.
Syntax:-
<HTML>
<HEAD>
<TITLE>-------</TITLE>
</HEAD>
<BODY>
----------
----------
----------
</BODY>
</HTML>
This is the basic syntax of HTML
Explanation of the Syntax:
1.You should need to write your program with in the <HTML> and </HTML> tag.
2. Inside the <HEAD> tag only you can specify your title of your page using <TITLE> tag.
3. <BODY> tag is the very important, all of your HTML tags and controls are write here only.
4. When the tags are closed you should close the tag using "/"
Example Program:- (Editor)
Output:-
Advertisement
Screen Shots:-
Post a Comment for "Basics of html"