[Tex/LaTex] Remove space from text and \rule

cvrulesspacingvertical

I'm writing a resume and I'm having trouble creating a certain appearance. enter image description here

I want to remove that space between education and the \rule. This is the code I currently have written

\textbf{EDUCATION}

\begin{center}

\rule{15cm}{.5mm}

\end{center}

I want it to appear as close as possible to this enter image description here

Thanks for the help

Best Answer

\documentclass{article}    
\begin{document}    

\noindent
\rlap{\rule[-1ex]{\linewidth}{.5mm}}EDUCATION

\end{document}
Related Question