[Tex/LaTex] Flushright, Allignment

alignhorizontal alignment

enter image description here

I want to align text as in the picture above. Starting from supervisor till Patiala.
I used flushright but it aligned the text from the right hand side as in the picture below. How can I correct this?

enter image description here

Best Answer

This could be achieved with a tabular environment:

\documentclass[10pt]{report}

\begin{document}

\begin{center}
    \textbf{CERTIFICATE}
\end{center}

This is to certify that...

\begin{flushright}
\textbf{
    \begin{tabular}{l}
    SUPERVISOR\\
    \\
    Dr./Er. XXX\\
    Professor/Assistant Professor,\\
    Department of Computer Engineering,\\
    Punjabi University,\\
    Patiala 
    \end{tabular}
    }
\end{flushright}
\end{document}