What is (mle) Tag in HTML
Answers
No <mle> tag is present in HTML.
But if you are mentioning <i> tag then:
Definition and Usage
The <i> tag defines a part of text in an alternate voice or mood. The content of the <i> tag is usually displayed in italic.
The <i> tag can be used to indicate a technical term, a phrase from another language, a thought, or a ship name, etc.
Use the <i> element only when there is not a more appropriate semantic element, such as:
<em> (emphasized text)
<strong> (important text)
<mark> (marked/highlighted text)
<cite> (the title of a work)
<dfn> (a definition term)
Example HTML code:
<!DOCTYPE html>
<html>
<body>
<p>He named his car <i>The lightning</i>, because it was very fast.</p>
</body>
</html>
If you have Some more questions, then contact me at:
Email: [email protected]
Youtube: shorturl.at/mnB57
Answer:
HTML uses various tags to create the structure of the web page. Every tag is written inside angular brackets <>. Almost every tag also has a corresponding closing tag. Tags are also known as elements.
Tags are of two types-
Container Tags/Elements
Empty Tags/Elements
The tags are discussed below:
<!DOCTYPE html>
This tag is used to tell the web browser that the following text document is a HTML document. There's no need to mention the HTML version.
<html>
This tag comprises of the complete HTML document and everything in a HTML document needs to be written inside these angular brackets.
<head>
This tag is used for document's header.
<title>
This tag is used to mention the title of the document and is placed inside <head> tag.
<body> This tag consists of body of HTML document. It includes other HTML tags like <h1> and <p>.
<h1>
This tag represents the main heading of the document. A document can have multiple headings and can be denotes as <h2>, <h3>,...,etc.
<p>
This is a container element and is used to represent the paragraph of the HTML document.