[Tex/LaTex] Left margin including first line

margins

I'm trying to add margin to text but I have a little problem. I want to get rid of newline after first text. My code is

\documentclass{article}

\usepackage{lipsum}
\usepackage{scrextend}

\begin{document}
    \noindent Text
    \begin{addmargin}[40pt]{0pt}
        \lipsum[11]
    \end{addmargin}
\end{document}

The output is

compiled code

What I am expecting

expected output

How can I do it? Thanks.

Best Answer

Here are three ways to do it:

\documentclass{article}
\usepackage{lipsum}
\usepackage{scrextend}
\usepackage{enumitem}

\begin{document}

\noindent Text\vspace*{-\baselineskip}
\begin{addmargin}[40pt]{0pt}
  \lipsum[11]
\end{addmargin}

\vskip1cm

\leftskip=40pt\noindent
\llap{\makebox[40pt][l]{Text}}\lipsum[11]

\vskip1cm

\begin{description}[font=\normalfont, leftmargin=40pt, labelwidth =\dimexpr40pt-\labelsep\relax]
  \item[Text] \lipsum[11]
\end{description}

\end{document} 

enter image description here