bdo tag in html
HTML <bdo> tag
1] Bi-Directional is what BOD Tag stands for.
2] The default text direction can be changed by using the HTML tag.
3] To indicate right-to-left text, use the element with the dir property set to "rtl".
4] BDO tag is not commonly used in day-to- day.
5] HTML development unless you're dealing with specific situations involving
bi-directional text.
6] which is use to override the current or default text direction.
7] the html<bdo> tag set the direction of content writing from left - right and right to left.
8] use primarily language reading occurs right to left.
HTML bdo tag :-
Example
<!DOCTYPE html>
<html>
<head>
<title>html BDO tag </title>
</head>
<body>
<h2>Html BDO tag </h2>
<bdo dir="rtl">Hello friends how are you</bdo>
</body>
</html>
Related Post :-
Post a Comment