You are on page 1of 1

HTML stands for Hyper-Text-MarkUp-Language

HTML is used by web-developers for displaying the data to the web-browser.


HTML uses inbuilt tags to display the data on the web-browser
HTML page consists of HTML elements and attributes.

HTML elements
HTML elements are basic building blocks of HTML page.
HTML elements consists of start tag and end tag
HTML elements without end tags are called empty elements(tags). Empty tags contains
no content.

Basic Structure of HTML Page


<!DOCTYPE html>--->Web-Browser to understand that the web-page follows the HTML5
version
..
..
..
..
..
..
..

HTML Headings--><h1>....<h6>

HTML Formatting
<b>-->Bold Text
<i>--->Italics Text
<strong>--->Strong text
<em>--->emphasized text
<del>--->delete the text
<ins>--->marked text

HTML Quotations
<q>--->Add " " to the text

HTML Links <a href="" >Link Name</a>


HTML Images <img src="" alt="" width="" height="">
HTML Audio<audio controls><source src="" type="">No Browser Support</audio>
HTML Video<video controls><source src="" type="">No Browser Support</video>
HTML Radio<input type="radio" name="" value="">
HTML CheckBox<input type="checkbox" name="" value="">
HTML Table<table width="100px"> <tr><th></th></tr> <tr><td></td></tr> </table>

You might also like