Skip to main content

What is HTML ?



1. What is HTML ?

Ans :Well,we all have seen many types of websites , right? But if we think once how it has been created actually , I mean how a website can be designed .. Then HTML comes into picture guyz HTML stands for Hyper Text Markup Language.
Now its very confusing that what those above words mean? Well don't worry I will explain everything .

a. Hyper Text or Hyper link : In a simple line,when we want to communicate between two pages then hyper text or hyper link comes into picture. Let's understand Hyperlink with an example :
   
    Let's think we are making a website of "Travel Tourism" .Now what we have needed .
 Now pause i for 2  minutes,take a break and think if we visit a tourism page ,first what we will be explore,number 1 is "Tourism Package" and number 2 is "About US" .

Well that's great. Now we have to think how to connect between that two pages .That connections are done by Hyperlink .And the "About US" or "Package" word refers or contains the link with an underline .So it simply says connections between two pages .

b.Markup Language : Markup is nothing but an element i.e. "html, title, p, h1 etc " ,and when they are comes in two < >(angle brackets) brackets then it is known as tags . When we design a website,all the contents of that page are going in this tags . So the Markup Tags contain all the contents of a web page. As all the designs are done by this tags , all the things i.e. images,paragraph,button etc in a web page we see by this tags so these tags are together called Markup Language .As its marking all the things.
Basic structure of HTML :




And HTML isn't a Programming Language ..As Programming Language means decision making , calculation .But HTML is like a skeleton .It makes a structure of a website.
   For more information please visit my channel. Link is given below -

                  https://www.youtube.com/channel/UCC_SnAOTQP7uckcZR_3QMcQ?view_as=subscriber

Comments

  1. Wow.. Khub sundor Introduction chillo. Simple, Short, Easy to understand.
    Keep up the good work. Shree

    ReplyDelete

Post a Comment

Popular posts from this blog

What is Class and Object in Oops || definition of Classes & Objects

We can make a program in Procedure oriented like C . But when C++ comes and says about Object Oriented Programming Language ( Oops ) , then Class & Object comes into picture . If we want to make a program in object oriented,then we must have to know about Class & Object which is main attributes of Oops . If you don't know much about it, don't worry . Take a seat , and let's start .   Class is a blueprint of Object where Object is a real world entity . Now whoever reading this blog , consider that I am a Object , that's great .. Now let's see with an example below then will discuss rest   ..       So if I consider Human as a Class & myself as an Object , then its definite I must be some properties and behavior .. So here we can say skin color , age , eye color , height etc as properties of myself . I am 22 year's old so 22 year's is an property and I can talk so here talk() is an function ( behavior ) of myself . So there are s...

What is Variable?

In our School life , we have seen something like a + b = c where,                                                                                  a = 8,                                                                                  b = 2 , so c = ? Well we can solve this mathematical problem , right ? But what if we want to solve the same problem throughout any Programming language , then something called " var " came to picture . So take a seat , and let's start ..   In Programming language, if we want to adding two digits for example 3 + 5 and want to print it , ...

What is a tag or anchor tag in HTML ?

We all can create a HTML page , right ? But What If I want to connect two HTML pages ? Good question.. Don't Worry ,We will discuss about it now .So please take a seat . Let's start .   So , when we want to connect two pages then <a> tag comes in picture.Through this tag we can connect between two HTML document (pages) ,we also can connect an external image and also we can put any website's link.Well ,but where to put the links and also what is <a> tag .  Well , <a> tag is nothing but an element is called anchor element .And it has a attribute is "href (hyper reference)" where we can put the address or the link that where we want to go or we connect with that particular page . But how ..... That I will show you too .. Suppose , we have two pages in a website , is " HOME " and " CONTACT " . So I am gonna show the linking process below with an example :   So , in the above example , we can see two pages...