I want a simple code for building this simple effect:

Two columns: First column should contain the text and the second one should contain the image
I want a simple code for building this simple effect:

Two columns: First column should contain the text and the second one should contain the image
You can archieve this for example by using minipages:
\documentclass{article}
\usepackage{float}
\usepackage{graphicx}
\usepackage{blindtext}
\begin{document}
\noindent \begin{minipage}{0.5\textwidth}
\blindtext
\end{minipage}
\begin{minipage}{0.5\textwidth}
\begin{figure}[H]
\includegraphics[scale=0.4]{grafiken/verwendensieelearning.png}
\caption{\label{fig:blue_rectangle} Rectangle}
\end{figure}
\end{minipage} \hfill
\end{document}
For more info you can find alot on tex.stackexchange about minipages
Check out this or look here or maybe here or...
Good luck =)
wrapfig.– JPi Feb 08 '16 at 13:10