Wednesday, December 21, 2016

Start from Static website - Learn HTML

Static website

                       These type of website will not change at run time. Actually, It will display what the developer stored.

                        Maximum Static websites only using plain HTML code. Without scripting language. You can use scripting language in this website. But scripting languages also for same purposes (User cannot modify any content of website) only use in static websites.

Ok! friends Let's we start lessons about HTML.

I am not going to much explanation without matter. Only in this blog you will expect matters that users can understand.


HTML (Hyper text markup language)

open notepad in your system or text editor. Type commands. And click save give the filename with .html in double quote. example : "first.html"


Html format

Every commands called as tags. Open tags to start ie <HTML> . End tags to finish the tag ie </HTML>. Note : end tags have "/" mark before tag name.




<HTML>
<HEAD>
<TITLE> Inside this tag you can enter your title of page </TITLE>
</HEAD>
<BODY>


Here you can write code for body of webpage



</BODY>
</HTML>


All the HTML file should be inside a open html tag <HTML> and end html tag </HTML>.

<HEAD> </HEAD> tags included all header sections including title.

The title of website should be inside the <TITLE> </TITLE> tags. (Title tags should be inside the head tags.

<BODY></BODY> tags contains body of page. Please see the above image for sample.

The above web page will explain you as what is title bar and what is the body of webpage.


Thank you! 

Our some other websites :

To learn php - our php tutorial - http://learnandsharephp.blogspot.com/


To Post free ads - Our Free ads website - http://www.mapofmine.com and http://www.freeadsimple.com




No comments:

Post a Comment