What is the BDI Tag in HTML? Complete Beginner Guide

 


 HTML <bdi> tag

1]  HTML <bdi> tag  is Bidirectional Isolate Element.
2]  used to inform the browser to isolate to span of text.
3] formatted in different direction from other  text outside.
4]  <bdi> tag text in language that are read from right to left.
5] Within a predominantly left-to-right document. 

HTML <bdi> tag  Example :-

<!DOCTYPE html>
<html>

   <head>
      <title>HTML BDI tag</title>
   </head>
        <h2>HTML BDI TAG</h2>
    <ul>
       <li>user<bdi>Aishwarya </bdi> : 60</li>
       <li>user <bdi> Seeta</bdi>  : 70</li>
       <li>user<bdi>  विठ्ठल</bdi>  :80</li>
       <li>user<bdi> Bharat</bdi>  :95</li>
    </ul>
   <body>
   </body>  
   </html>


HTML <bdi> tag :-
           Output

html <bdi> tag /output









Related Post :-

audio tag in html

php data type

php program to print half diamond pattern

Comments

Popular posts from this blog

HTML Tag

CSS Text Color Explained with Syntax and HTML Examples

HTML Input Type Submit Syntax and Example