A small way of knowledge sharing!

About me

Live Chat with me

Knowledge Sharing


Hi Friends, I am here to share the knowledge of past, present and future technologies, news related topics and some programming related posts. These posts will help you in coding as well to come out of your if you are in programming field. You can ask the question or you can start a discussion here.

Main aim to start this blog is to share our knowledge through the web and let the other people know what actually happening around us. You can add the data here and it will be published to all people.



How to start with HTML page

What is HTML and What does HTML means?

The term 'HTML' is the base of any web-application used to display the information through web. It is a language which describes the designing of a web-application.There are only few elements need to study to design a web page in HTML.

If you have any queries or suggestions feel free to write to me, write your feedback in comment box along with your contact details(details are displayed nowhere in the website).

Basic elements of HTML

Before going to explain the basic elements of html coding i would like to explain a brief architecture of any html page. Whole html document is written within the two 'html' (html tag) tags one is starting tag and another one is ending tag, which describes that the content written within these two tags is a HTML content. In this HTML tag there are two html-tags(html-content) one is 'head'(html tag) and another one is 'body'(html tag). 'head' is used to write the page title and link any files such as css styles (cascading style sheet linking), javascript(javascript file link) etc. 'body' section is used to write the content of a page that means our html web page design starts from the starting tag of 'body' and ends with the html tag body.Finally basic architecture of a HTML page looks as shown below.

<html>

<head>

... cascading style sheets (css), javascript files linking here

</head>

<body>

..page designing starts here

..

..

.. page desinging ends here

</body>

</html>


How to start with HTML page / How to write HTML Page / How to save HTML Page ?

Here is the simple method how you start with xhtml (xhtml is nothing but writing a html wed page design by following certain standards proposed by W3C). Open note application and type the html text as shown in the example shown above and save it with either with .html extension or with .htm extesion.

...still updating the content, please check for updates.
If you have any queries or suggestions feel free to write to me, write your feedback in comment box along with your contact details(details are displayed nowhere in the website).

No comments:

Powered By Blogger