My header and footer do not appear on the first page. I hope they do. The solution of a duplicate question is not working for me. That is why I still decided to post my question. I will make the tile more informative once I have known the cause.
MWE
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[margin=1in]{geometry}
\usepackage[hidelinks]{hyperref} % hide the links
% For custom spacing
\usepackage{setspace}
\setstretch{1.2}
% For the symbols
\usepackage{wasysym}
\usepackage{marvosym}
\usepackage[alpine]{ifsym}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\lhead{
\Mundus\enspace \href{http://sites.google.com/site/}{http://sites.google.com/site/}
}
\rhead{
\MVAt\enspace \href{mailto:e@gmail.com}{e@gmail.com}
}
\cfoot{\thepage/2}
\usepackage{lipsum}
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\newcommand{\Hrule}{\rule{\linewidth}{0.3mm}}
\makeatletter% since there's an at-sign (@) in the command name
\renewcommand{@maketitle}{%
\parindent=0pt% don't indent paragraphs in the title block
\centering
{\LARGE \bfseries\textsc{@title}}
\HRule\par%
\textit{@author \hfill @date}
\par
}
\makeatother% resets the meaning of the at-sign (@)
\title{Statement of Purpose}
\author{X}
\date{\today}
\begin{document}
\maketitle% prints the title block
\thispagestyle{empty}
\vspace{12pt}
\lipsum
\end{document}

fancyhdr(see http://meta.tex.stackexchange.com/questions/228/ive-just-been-asked-to-write-a-minimal-example-what-is-that/3225#3225). – doncherry Oct 12 '14 at 14:28