This question is building from the post found here. I would like to get the code to produce this cover page that is found here:
I am still not successful in getting the full page of the tikz image to show up. Here is the code modified as per the suggestions provided by John Kormylo with other tweaks:
\documentclass[11pt,letterpaper]{article}
\usepackage{tikz}
\usetikzlibrary{backgrounds, calc, shadows, shadows.blur}
\usepackage{graphicx}
\pgfmathdeclarerandomlist{MyRandomColors}{%
{red}%
{red!25}%
{magenta}%
{magenta!25}%
{olive}%
{olive!25}%
{brown}%
{brown!10}%
{violet}%
{violet!25}%
{gray}%
{purple}%
{yellow}%
{orange}%
{orange!25}%
{cyan}%
{green}%
}%
\newcommand*{\GridSize}{20}
\newcommand*{\ColorCells}{%
\foreach \y in {1,...,\GridSize} {
\foreach \x in {1,...,\GridSize} {
\pgfmathrandomitem{\RandomColor}{MyRandomColors}
\draw [fill=\RandomColor, fill opacity=0.2, draw=none, ultra thick]
(\x-1,\y-1) rectangle (\x,\y);
}%
}%
}%
\listfiles
\begin{document}
\pagestyle{empty}
\begin{tikzpicture}
\coordinate (Origin) at (0,0);
\begin{scope}[scale=0.8,ultra thick,olive!45]
\ColorCells
\draw (0, 0) grid (\GridSize, \GridSize);
\coordinate (input);
\end{scope}
\node[rotate=90,above right] at ($(current bounding box.south east)+(-1,1)$)
{\textcolor[rgb]{0.01,0.50,1.00}{\fontsize{50}{120}\selectfont{\textbf{the name of the course}}}};
\node[above right] at ($(current bounding box.south west)+(1,1)$)
{\fontsize{50}{120}\selectfont{name of authorities}};
\end{tikzpicture}
\end{document}


\fontsize{fontsize}{baselineskip}. If you change first parameter you change font size, but the second only will have effect with more than one line. Some fonts don't exist in any size, in this case they are substituded for a suitable size. You can see related warnings in.logfile. If you want to use any font , select a scalable font. In updated answer I've usedlibertine. I don't know which font was used in metafun documentation. – Ignasi Jan 25 '16 at 15:09