Sunday, August 13, 2017

Using HTML in creating Web pages.(Basics)

Hyper Text Markup Language(HTML)is a markup language used to create web pages and display other information through the web browser. It is not a programming Language and it is just a markup language. And it is consists of various markup tags.
When creating web pages we can use HTML editing software such asNotepad++, Sublime text,Brackes, Net beans,Microsoft visual studio community.HTML tags are used to create web pages using HTML.(ex:,)HTML tags are using inside the angle brackets.(<>). The HTML tags are using as couples. If we open a tag(Opening tag) the tag must be closed in descending order. Descending order means when we open a tag inside another tag. First we have to close the inside tag.It can be clearly clarify using the example.
To save HTML files we use the extension .html or .htm
Further let's look on to some basic elements we can use in creating web pages in window operating system.<head> <title> and <body> tags can be considered as the most important tags in HTML. <head> element contain the metadata.<title> can be considered as the most important part in the <head> tag.<title>tag is demonstrated on the title bar of the browser. The content of the web page is inside the<body> tag.
Heading Tag )and (<body>) tags can be considered as the most important tags in HTML. (<title>) can be considered as the most important part in the <head> tag.(<title>) tag is demonstrated on the title bar of the browser. The content of the web page is inside the(<body>) tag.</p> <div class="separator" style="clear: both; text-align: center;"> <a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtJGdfsBbLcx2w0EQFPnyKT9Ac1pvkm1nRFQ2lVyNssvNgdD2RxsuVG5qXUHSt5v8r1Pf9rVEGiEVZI23piI4SarkJ_Y0_lXQv8x5GZ66IG43LPdd2CHnHyIYlkrE-amHXs1UXzTLyci0/s1600/Capture2.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtJGdfsBbLcx2w0EQFPnyKT9Ac1pvkm1nRFQ2lVyNssvNgdD2RxsuVG5qXUHSt5v8r1Pf9rVEGiEVZI23piI4SarkJ_Y0_lXQv8x5GZ66IG43LPdd2CHnHyIYlkrE-amHXs1UXzTLyci0/s320/Capture2.PNG" width="320" height="170" data-original-width="378" data-original-height="201" /></a></div>

In HTML headings are defined with the <h1> to<h6> tags.


<h1> defines the most important heading while <h6> defines the least important heading.



Paragraph Tag

The paragraph is defined by the tag <p>.




1 comment: