HTML Introduction

HTML Introduction

Table of contents

No heading

No headings in the article.

HTML (Hyper Text Markup Language) is a building block of web page.

  • It used to create skeleton for web page.

  • It easy to learn and used to create static page.

  • Further it used to structure a web page and its content for presenting to viewers.

  • HTML 5 is the latest version .

How to create HTML file?

  • For creating HTML Notepad++ is enough

Syntax of HTML

<!DOCTYPE>

<html>
        <head>
              <title> Page Title<!title>
        <!head>

        <body>
               <h1> Page content <!h1>
        <!body>

<!html>