Example of HTML bdo tag - HTML CSS HTML

HTML CSS examples for HTML:Text Format

Description

Example of HTML bdo tag

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>Example of HTML bdo tag</title> 
 </head> <!--  w  ww  .  j  a va  2 s .co  m-->
 <body> 
  <p>The sequence "1-2-3-4-5" was reversed as: <bdo dir="rtl">1-2-3-4-5</bdo></p>   
 </body>
</html>

Related Tutorials