Easy Recepies

You can find very easy and quick recepies here..
.

What is HTML


HTML Basics



The definition of HTML is HyperText Markup Language.

HTML is not a programming language; it is a markup language that defines the structure of your content.Markup is what HTML tags do to the text inside them. They mark it as a certain type of text (bold text, for example).
HTML is a Language, as it has code-words and syntax like any other language such as all HTML documents must start with a document type declaration: <!DOCTYPE html> and HTML document itself begins with <html> and ends with </html>.The visible part of the HTML document is between <body> and </body>.

Example:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>HTML basics</title>
    </head>
    <body>
        <p>Main Paragraph</p>
    </body>
</html>







No comments:

Post a Comment