<bdo> </bdo>

PURPOSE: A tag to override the default text direction. dir="ltr" is left to right text (default) and dir="rtl" is right to left text.

Below is a basic html document. The referenced html tag is in RED. All tags must have a start and a end tag. Most end tags have a / before the tags name, however there are a few that are done differently. The tags that end differently will be noted and highlighted. The order of the start and end tags is also very important to proper display of your page in a web browser.


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title> The Page Title Goes Here </title>
</head>
<body>
<p>This is regular text and <bdo dir="rtl">This is bdo text</bdo></p>
</body>
</html>


Below is the code results:

This is regular text and This is bdo text


© Copyright 2001,2002 Southern Twilight    All rights reserved.

Back To HTML Examples