
- What is an HTML ELEMENTS?
- An HTML Elements is defined by a start tag, some content, and an end tag.
- Some Tag
1. The <!DOCTYPE html> declaration defines that this document is an HTML5 document
2. The <html> element is the root element of an HTML page
3. The <head> element specifies a title for the HTML page (which is shown in the browser's title bar or the page's tab)
4. The <body> element defines the document's body, and is a container for all the visible contents, such as heading, paragraphs, images, hyperlinks, tables, lists, etc.
5. The <h> element defines a large heading
6. The <p> element defines a paragraph.
0 Comments