Html Intro
Html Intro: Html stands for “Hypertext Markup Language” . Markup language is set of tags. Each html tags describes a different document in the page.
HTML Introduction
Lets understand the html base structure with the following example
Example
<!DOCTYPE html> <html> <head> <title>Title</title> </head> <body> <h1>Heading</h1> <p>Paragraph.</p> </body> </html> |
Advertisements
Add Comment
📖 Read More
- 1. Html Editors
- 2. Html Documents
- 3. Html Elements
- 4. Html Attributes
- 5. Html Headings
- 6. Html Paragraphs
- 7. Html Styles
- 8. Html Formatting
- 9. Html bold tag
- 10. Html strong tag