If you want to place certain information on the page, one possibility (there are several more) is to use the package textpos, which open the possibility to place text at an absolute position on the page (typical for a logo or similar graphic), or relative to another text.
Here is a MWE placing a text on top right at the page and a logo (the black box at the bottom left. To play with the position, increase or decrease the first digit inside the parenthesis to move the text/graphics horizontal, increase or decrease the second digit for vertical movement.
\documentclass[demo,a4paper]{article}
\usepackage{blindtext,graphicx}
\usepackage[absolute]{textpos}
\setlength{\TPHorizModule}{1cm}
\setlength{\TPVertModule}{1cm}
%\TPGrid[1mm,1mm]{10}{15} % Uncomment to have a grid on the page
\begin{document}
\begin{textblock}{5}(14,1)
\noindent\Large University of Nowhere
\end{textblock}
\begin{textblock}{5}(1,27)
\includegraphics[height=1.cm,width=5cm]{Demo}
\end{textblock}
\title{MyThesis}
\author{M.\,Y.\,Alterego}
\maketitle
\section{Sirst section}
\Blindtext
\Blindtext
\end{document}
