I am creating my resume in LaTeX and loving it, using new commands and learning many new things. However I am stuck at the top. I am trying to create an output like this ..

I have learnt a bit about indentation and have to learn more about using the geometry package but during my coding (below) I am not able to align like the above image. I have used \noindent and \flushright but each time I use the command the indentation starts with new line making the output different.

%% (c) Shashwat Pant
%% Resume - C.V of Shashwat Pant
%% September 17th 2012
\documentclass[letterpaper,11pt]{article}
%\usepackage{times}
\usepackage{geometry}
\usepackage{hyperref}
\usepackage[empty]{fullpage}
\newcommand{\head}[1]{\noindent \\ \\ \large \bf #1}
\begin{document}
\begin{center}
\bf{\huge Shashwat Pant}\\
\end{center}
\hrule
\head{Contact Information}
\begin{center} {
S/O Late Dr. S.N Pant \\
Flat No - 391, Block D-3 \\
Penta Homes, VIP Road \\
Zirakpur - 140603 \\
Punjab , IN
} \end{center}
\begin{flushright}
Voice -
\end{flushright}
\end{document}
Apart from the indentation issue, what font package is good for making resume ?


