[Tex/LaTex] How to create a simple page of homework in LaTeX

formatting

I've been frustrated with using Microsoft Word for typing out equations, so I've decided to switch over to LaTeX to write all of my homework with. I've never used LaTeX before to typeset anything, so I'm a little overwhelmed right now.

At the moment, all I need to do is make a simple document that has the following format:

My Name
My ID Number
Class Name

Document Title

Multiple paragraphs of double-spaced text will go here.

Another paragraph of text.

How can I typeset this simple document in LaTeX?

Best Answer

\documentclass[parskip=full]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{setspace}
\usepackage{lipsum}

\begin{document}
My Name\\
My ID Number\\
Class Name

\Huge\textbf{Document Title}

\doublespacing
\normalsize

\lipsum[1]

\lipsum[2]

\end{document}