[Tex/LaTex] Bold face title and different font sizes in the same title

boldfontsizetitles

How could I make every character bold in the title? Also, is it possible to make "Faculty of Science" smaller size than the University's name at the same time?
I'm new to TeX.

\documentclass{article}
\usepackage{titling}
\newcommand{\subtitle}[1]{%
  \posttitle{%
    \par\end{center}
    \begin{center}\LARGE#1\end{center}
    \vskip0.5em}%
}

\title{The University of Alberta
\\Faculty of Science}
\subtitle{(Paper Title)}
\author{(Author)}

\begin{document}

\maketitle

\end{document}

Best Answer

How about this?

\documentclass{article}
\usepackage{titling}
\newcommand{\subtitle}[1]{%
  \posttitle{%
    \par\end{center}
    \begin{center}\LARGE#1\end{center}
    \vskip0.5em}%
}

\title{\textbf{The University of Alberta
\\{\Large Faculty of Science}}}
\subtitle{(Paper Title)}
\author{(Author)}

\begin{document}

\maketitle

\end{document}

enter image description here

Related Question