I have a few problems whilst creating my title page.
How would italicize just the email, course, supervisor etc., and not the actual text itself?
How would I shift the
Email: <myemail>,Course: <course name>,Supervisor: <supervisor name>etc. to the left? I tried using theflushleftcommand but it can't seem to work.How would I shift the date right below my name? It does not work when I move the
\datecommand below my name.
I'm trying to follow the style in this:

Currently my code is as follows:
\documentclass[11pt,a4paper]{report}
\usepackage{amsmath,amsfonts}
\begin{document}
\title{\bf TitleTitleTitleTitleTitleTitleTitle}
\author{My nameMy nameMy nameMy name\\
\\
\it {Email}: \texttt{123@myemail.com}\\
\it {Course}: Course Name\\
\it {Supervisor}: Professor Name\\
\\
Department of engineering
}
\date{\today}
\maketitle
\end{document}



