Show Output
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML dir tag</title> </head> <body> <h2>Don't use this tag</h2> <dir> <li>examples</li> <li>tutorials</li> </dir> <h2>Alternative</h2> <ul> <li>examples</li> <li>tutorials</li> </ul> </body> </html>