Friday, June 17, 2016

HTML Starts

Hello guys
 how are you?
 Today we start HTML .
★So what is HTML?
★Answer: HTML is a markup language. Which is used to built up a Web design.
Today we give a introduction of HTML .
And how it starts...
As we are talking about HTML,  HTML starts with <html> tag--(if the keywords situated in < & > here. It called a tag) and closed by </html> tag --( it calls closing tag)

Then time for <head> tag and <body> tag.
★Head tag situated----
<head>
<title>here is title</title>
</head>

★Again body tag situated----
<body>
Here we can write any content what we want!
</body>

Now I write a whole simple code of HTML .
★That is ----
<!doctype html>
<html>
<head>
    <title>Learn Program Do Program Be Program</title>

 </head>
<body>
    <p>Hello world!</p>

</body>
</html>

★That is the code.  Lets write that to your noteapad and save as index.html
★Here you can realise that the file we save as the name and added to the last --  .html
★It is  the rules for html. And if we save the file as .html  file. It will shows like a Internet Icon.
★★Lets try this code..... and comment below. If here any problem you face or comment the questions if you don't understand any topic!!!



3 comments:

What is the best programming language?