1) The latex code I currently have and the corresponding output
\def\lineA{Email \ \ \ Lorem ipsum dolor sit amet}
\def\lineB{Phone \ \ \ Lorem ipsum dolor sit amet}
\def\lineC{Address \ \ \ Lorem ipsum dolor sit amet}
\def\lineD{Website \ \ \ Lorem ipsum dolor sit amet}
...
\lineA \\
\lineB \\
\lineC \\
\lineD \\
This is producing the following results
2) The latex code I want and the corresponding output
\def\lineA{\width{20px}{Email} \ \ \ Lorem ipsum dolor sit amet}
\def\lineB{\width{20px}{Phone} \ \ \ Lorem ipsum dolor sit amet}
\def\lineC{\width{20px}{Address} \ \ \ Lorem ipsum dolor sit amet}
\def\lineD{\width{20px}{Website} \ \ \ Lorem ipsum dolor sit amet}
...
\lineA \\
\lineB \\
\lineC \\
\lineD \\
That should hopefully be producing the following results
How can I achieve this?



\width{20px}by\par\makebox[20px][l](and remove the\\especially the final one which is in error) – David Carlisle Apr 20 '21 at 19:03