
What is HTML?
Hyper Text Markup Language
- Use to develop a webpage
- Developed by TIM BERNERS LEE in 1991
- It is subset of SGML
- SGML means standard generalised markup language
- HTML elements are represented by tags
- Browsers do not show the HTML tags, but use them to render the content of the page
In Head Section Following Tag should be use
- Title
- Meta
- Link Style
In Body Section Following Tag should be use
- Contant
- Image
- Video
- Form
- Table etc…
Tag attributes
<html> <head> <title> Lisenme.com </title> </head> <body> Tag Attributes are background color = color name text = color name background = url top margin = value bottom margin = value left margin = value right margin = value link = color a link = color v link = color </body> </html>
Block Level Element
Heading: There are 6 level in html
<html> <head> </head> <body> <h1> Lisenme.com </h1> <h2> Lisenme.com </h2> <h3> Lisenme.com </h3> <h4> Lisenme.com </h4> <h5> Lisenme.com </h5> <h6> Lisenme.com </h6> </body> </html>