If this is the font from the Microsoft font library the correct name would be "Old English Text MT". If the font has been installed correctly you just have to replace "TeX Gure Chorus" in my example above by the correct font name:sheenshahid wrote:The name of this font is " old English " , which I noted from Microsoft word.
% Important: You have to use LuaLaTeX or XeLaTeX instead of PDFLaTeX zu% compile this file!\documentclass{article}\usepackage{fontspec}\usepackage{blindtext}\usepackage[english]{babel}\setmainfont{TeX Gyre Termes}% Use the Times clone TeX Gyre Termes as main font.\newfontfamily{\otherfamily}{Old English Text MT}% Load "Old English Text MT" as an additional font family.\begin{document}\begin{titlepage}{\otherfamily This is the name of the university.}\vfill{\Huge\bfseries The Name of the Game\par}\bigskip{\large\bfseries Me and Boby McGee\par}\vfill\vfill\vfill\end{titlepage}\tableofcontents\blinddocument\end{document}

BTW: The name of the font file is OLDENGL.TTF. So can also copy that font file to the document directory and use
\newfontfamily{\otherfamily}{OLDENGL.TTF}
to load the font by filename instead of font name. This even works without font installation and if loading the font by font name fails.As you can see, using fontspec with LuaLaTeX or XeLaTeX is very easy.