Skip to main content

What is HTML or HTML tags

HTML

1) HTML stands for Hyper Text Markup Language

2) Created by Ten Berners-Lie in 1991 but published in 1995

3) It is Client side web technology.

4) It has predefined elements are called tags, used to"markup" a text documents.


HTML TAGS

1 <html>_____</html>
    Declare the Web page to be written in HTML.

2 <head>_____</head>
      Delimits the pages head.

3 <title>______</title>
      Defines the title.(not display on the page)

4 <body>_____</body>
     Delimits the pages body.

4 <hn>_____</hn>
     Delimits a level in heading.

5 <b>_____</b>
     Set in boldface

6 <i>_____</i>
      Set in italics.

7 <center>_____</center>
     Center on the page horizontal.

8 <ul>_____</ul>
     Brackets an unordered (bulleted) list.

9 <ol>_____</ol>
      Brackets a number list.

10 <li>_____</li>
       Brackets an item in an ordered and numbered list.


Comments