HTML 5 <bdo> tag: The HTML <bdo> tag is used for overriding the text direction or specify the direction of text. The dir attribute have two values: rtl (write text from right to left direction) and ltr (for left to right).
Example
<!DOCTYPE HTML>
<html>
<body>
<bdo dir="rtl">
Here is some text written from right-to-left.
</bdo>
</body>
</html>
Here we set the dir value as rtl which means text is written from right to left direction, Now see the output:
Output
Here is some text written from right-to-left.
HTML 5 <blockquote> tag: The HTML <blockquote> tag is used for indicating long quotations which are taken from another source. Browsers generally render blockquote text as indented text. If you wants to display quoted text within a non-quoted paragraph, you should use the <q> tag.
Example
<!DOCTYPE HTML>
<html>
<body>
<p>Here is a quote from the site dotnetheaven:
<blockquote site="http://www.dotnetheaven.com">
Dotnetheaven is a place where you can find the latest articles on different categories like .net, asp.net, html 5, javascript etc to increase your skills and share your opinions. Submit your article and share your blog content with us! </blockquote>
Enjoy participating in this community .
</p>
</body>
</html>
Output Window