cite and Bi-Directional Override
cite:
<cite> makes the to italic.<!DOCTYPE html>
<html>
<body>
<p> Its Our Brand <cite>Technisia</cite>
</body>
</html>
Output:
Its Our Brand Technisia
Bi-Directional Override:
<bdo> is used to override the text direction.
direction is given dir attribute ltr overrides the text from left to right and rtl overrides the text from right to left.
<!DOCTYPE html>
<html>
<body>
<bdo dir="rtl">This line will be written from right to left</bdo>
</body>
</html>
Output:
This line will be written from right to left
Comments
Post a Comment