Introduction to Basic HTML - Chapter 1

Comments
Chapter 1 (This section will help you understand basics of HTML, language used to create Websites) (a) Introduction to HTML : Hypertext Markup Language Hypertext - Simple meaning of Hypertext is "texts with link in it". Clicking a word that brings you to a new homepage means you have just clicked a HYPERTEXT. Markup Language - Its a programming language used to create text to do something more than just sit on a webpage...

Basic Terminology - Chapter 2

Comments
Chapter 2 (This section will help you understand basics of HTML, language used to create Websites) (b) Basic Terminology :  1) HTML Tags - To understand HTML more,we should know how to talk about HTML. You have already seen we have used < > s a lot. Objects inside < >s are called tags. Mostly all tags come in pairs :  Opening Tag- e.g. <html> Closing Tag- e.g. </html> You...

Make the Head - Chapter 3

Comments
Chapter 3 (This section will help you understand basics of HTML, language used to create Websites) (c) Make the Head :  All content of our HTML file goes in between the opening <html> and closing </html> tags. Always remember, there are always two parts of the HTML file : the head & the body. For now let's just focus on head tag. It has an opening tag as well as a closing tag. (i.e. <head> and </head>...

Make the Body - Chapter 4

Comments
Chapter 4 (This section will help you understand basics of HTML, language used to create Websites) (d) Make the Body :  Whenever we put any content between the opening tag and closing tag, the entire bit is called an element. element = <opening tag> + content + </closing tag> The content you type in between <body> .. </body> tags is what will be visible on the actual web page. Always remember,...