There are already two good approaches, but I'd like to add one to illustrate some ideas the LaTeX3 team have developed in using 'coffins': boxes with multiple handles for laying out designs. At the moment, this is not perfect: there are some concepts we perhaps need to add to the code, in particular vertical boxes which adopt a 'maximum' width and absolute page positioning (everything is relative at present).
The idea of the coffins approach is we can create design layout with some form of description that is understandable. Here, we have three blocks (I'll call them A, B and C). From the example, the description seems to be as follows. Block A (ABC...) is typeset left-aligned. Block B (012...) is a single line and is typeset exactly 5 cm below block A (measuring top to top) with no horizontal offset. Block C (abc...) is typeset exactly 5 cm to the left of block B (left-edge to left-edge), with the baseline of the first line of block C aligned with the baseline of block B. The entire construct is positioned such that the top-left corner of the enclosing box is positioned at (5 cm, 5 cm) on the page. This translates into
\documentclass{article}
\usepackage[absolute,overlay]{textpos}
\usepackage{xcoffins}
\NewCoffin{\CoffinA}
\NewCoffin{\CoffinB}
\NewCoffin{\CoffinC}
\begin{document}
\SetHorizontalCoffin{\CoffinA}{%
\begin{tabular}{@{}l@{}}
ABCDEFGHIJ\\
ABCDEFGHIJKL\\
ABCDEFGH
\end{tabular}
}
\SetHorizontalCoffin{\CoffinB}{0123456789}
\JoinCoffins{\CoffinA}[t,l]{\CoffinB}[t,l](0 cm, -5 cm)
\SetVerticalCoffin{\CoffinC}{10 cm}{%
\noindent
abcdefghij\\
abcdefghijkl\\
abcdefgh
}
\JoinCoffins{\CoffinA}[\CoffinB-B,l]{\CoffinC}[T,l](-5 cm, 0 cm)
\begin{textblock*}{10cm}(5 cm, 5 cm)
\noindent
\TypesetCoffin{\CoffinA}%
\end{textblock*}
\end{document}
(There are other orders I could do the same thing.)

zref, there are many answers on this site using a solution widely known to the residents as\tikzmarksolution. It requires TikZ package which is a little overkill but positioning is a very easy task. – percusse Sep 9 '12 at 0:34