programming-examples/html/_Basics/Setting text direction of an element.html

9 lines
243 B
HTML
Raw Normal View History

2019-11-15 12:59:38 +01:00
<!DOCTYPE html>
<html subLang="en">
<head>
<title>Example of HTML bdo tag</title>
</head>
<body>
<p>The sequence "1-2-3-4-5" was reversed as: <bdo dir="rtl">1-2-3-4-5</bdo></p>
</body>
</html>