About the Blog:

This blog is dedicated to all the front-end and UI developers who wants to excel their skills in CSS, HTML, JavaScript, jQuery, Ajax, Reactjs, Angularjs, Front-end standards and in Rich User Experiences. In this blog, we are sharing some useful tips and tricks along with the code snippet examples which will help you to build responsive and user friendly websites/web applications.

Monday, October 1, 2007

HTML for Beginners

HTML stands for Hyper Text Mark-up Language. Basically, it consists of pre-defined Tags(Elements). As i see it is very easy language, which can be easily understand by any user either it is new user to html learning platform. It starts with <html> tag and closed with </html> tag. which includes <body> or </body> tags. Apart from there are various tags which we will discuss later.

Here are some sample examples for HTML, which will give you a general idea about what the html is? and how it works?

Example 1:

<html>
<head>
<title>Untitled Document</title>
</head>
<body>
Your's Content
</body>
</html>


No comments: