Introduction To HTML | Web Development Course

What is HTML? HTML is HyperText Markup Language which is used to design or create the structure of any web page. Web pages are also known as HTML documents. What is HTML Tag? An HTML tag is a keyword or command enclosed in an angular bracket. HTML Tag consists of Element, Attribute, and Value. <tag attribute="value">Content</tag> Types Of Tags Single Tag or Empty Tag The tag which doesn't have the ending tag is called a single tag. some single tags are: <br>,<hr>,<!>, etc. Pair Tag or Container Tag The tag which has an opening and ending tag is known as a Pair tag. The pair tags always end with slash(/). Some pair tags are: <p>...</p>,<h1>...</h1>,<div>...</div>,etc. Create Your First HTML Document Open Notepad or other Code Editor and type the code shown below. <!DOCTYPE html> <html> <head> <title>Hello World</title> </head> <body> <p>This is my first HTML Do