[Tex/LaTex] n icon for LinkedIn in LaTeX

fontawesomesymbols

I am trying to create my resume in LaTeX and I want to add a LinkedIn symbol for my profile. I am using the FontAwesome template but it does not work for LinkedIn. I am new to LaTeX so any help is much appreciated.

 \documentclass[9pt]{developercv}
    \begin{document}
    \begin{minipage}[t]{0.35\textwidth}
    \vspace{-\baselineskip}
        \icon{Globe}{12}{\href{https://glitch.com/}{name}}\\
        \icon{Github}{12}{\href{https://github.com/}{name}}\\
        \icon{LinkedIn}{12}{\href{https://www.linkedin.com}{name lastname}}\\
   \end{minipage}
    \end{document}

Best Answer

The name for the LinkedIn icon is

Linkedin

Ask the developer of fontawesome why.

\documentclass[9pt]{developercv}

\begin{document}

\noindent
\icon{Globe}{12}{\href{https://example.com/@name}{name}}\\
\icon{Github}{12}{\href{https://example.com/name}{name}}\\
\icon{Linkedin}{12}{\href{https://example.com/in/name-123456/}{Name Surname}}

\end{document}

enter image description here