Is this possible to replicate this kind of font?
It's the blue one.
I like it because it's perfect to write examples of something where you don't want to use the same font.
I'm getting this when using XeLaTeX
If you follow the link that I provided in my comment then you get to this overview site:
There is a big link saying Calligraphical and Handwritten Fonts which leads to this:
What else do you expect? In addition the comment of barbara-beeton also provides handwritten fonts.
With Lua- and XeTeX engines you can use any (well almost) font you want. I searched for free handwritten fonts and stumbled upon Architect's Daughter
\documentclass{article}
\usepackage{fontspec}
\newfontfamily{\archw}{ArchitectsDaughter}
\DeclareTextFontCommand{\texthw}{\archw}
\begin{document}
\texthw{jumped on} some stuff
\end{document}
Please read further Proper way to change a font temporarily with fontspec which I stole egreg's answer above from.
XeLaTeX (but I already chose this).
– Schwale
Mar 28 '16 at 18:31
xelatex? That error can usually be taken as an accurate statement that you are not using either of the required engines. – jon Mar 28 '16 at 19:04