Learn HTML Underline Tag u with Examples
The <u> tag represent some text that is unarticulated or styled differently from normal text, such as the misspell words and proper names in Chinese text.
The <u> HTML element is the represents a span of inline text which should be rendered in way that indicates that has a non-textual annotation.
✷ HTML Underlined Tag
Syntax
<u> underlined text </ul>
✷ Learn HTML Underline Tag u with Examples
Program
✷ HTML Underlined Tag
Explain Program
<!DOCTYPE html>
- document type declaration.
- browser help this is an HTML5 document.
<!DOCTYPE html>
- document type declaration.
- browser help this is an HTML5 document.
Step 2 ]
. <html> ... </html>
- root element of the HTML document.
- <html> tag is part of the web page.
. <html> ... </html>
- root element of the HTML document.
- <html> tag is part of the web page.
Step 3 ]
<title>Underlined Text Example</title>
- title of the web page, which appears ON In the browser tab.
- As the title in search engine results (SEO impact).
Step 4]
. <body>
... </body>
- This is the visible part of the webpage.
Step 5]
- <p>
creates a paragraph. </P>
- Inside it is some text, and word underlined <u>...</u>:
- <u>
stands for underline.
- It underlines the word underlined.
output
Related Post :- |

Comments
Post a Comment