Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Convert html template to right to left (RTL) format

How to Convert html template to right to left format
Now I have a normal html template.
to change the template right to left

like image 899
SNS Avatar asked Sep 06 '25 03:09

SNS


1 Answers

Just use dir="rtl" in HTML tag like this code

 <!DOCTYPE html>
 <html lang="en" dir="rtl">
 <head>
 <meta charset="utf-8">
 <meta http-equiv="X-UA-Compatible" content="IE=edge">
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <title>Shafayat</title>
 <link href="css/bootstrap.css" rel="stylesheet">
like image 114
Momin Avatar answered Sep 07 '25 23:09

Momin