[Tex/LaTex] Changing chapter style

chapterssectioning

I am wondering how to change the chapter style to the following format?
enter image description here

I tried using titlesec package but couldn't figure out how to create this format.

\documentclass[reqno,12pt,oneside]{report} 
\usepackage{titlesec}
\begin{document}
\chapter{introduction}
\end{document}

Thanks in advance

Best Answer

Possible solution using titlesec:

\documentclass[reqno,12pt,oneside]{report} 
\usepackage[explicit]{titlesec}

\titleformat{\chapter}[hang]{\fillast}{\bfseries\MakeUppercase{\chaptertitlename\space\thechapter : #1}}{1ex minus .1ex}{\bfseries\uppercase}

\begin{document}
\chapter{introduction}
\end{document}
Related Question