How do I align the table with contact info to the top of the page? My best try is this:
\documentclass[draft]{article}
\renewcommand{\familydefault}{\sfdefault}
\usepackage[showframe,margin=3cm]{geometry}
\usepackage{blindtext,booktabs,cmap,hyperref,multirow,tabularx}
\usepackage[T2A]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\setlength\parindent{0pt}
\begin{document}
\pagestyle{empty}
%{\bfseries\LARGE Egor Tensin}\\
%\begin{flushright}
%\end{flushright}
\begin{minipage}[t]{.4\textwidth}
{\bfseries\LARGE John Smith}\\
\blindtext
\end{minipage}
\hfill
\begin{minipage}[t]{.5\textwidth}
\begin{tabular}[t]{>{\itshape}rl}
\toprule
Email:& \href{mailto:John.Smith@gmail.com}{\ttfamily John.Smith@gmail.com} \\
\midrule
Tel.:& +0\,(000)\,00-00-000 \\
\midrule
Address:& 221B Baker Street \\
& London, England \\
\bottomrule
\end{tabular}\\
\blindtext[2]
\end{minipage}
\end{document}
and see how the tabular is aligned to the bottom of the "John Smith" line? How do I align it to the top of the minipage?

\cline{0-1}instead of a\hline? – masu Nov 07 '13 at 22:36\vspaceas shown for\toprule– David Carlisle Nov 07 '13 at 23:05