I would like to make an article that has a line spacing between each line and each space contains a horizontal line. The space needs to be large enough for writing notes by hand. The code below works but obviously this method is very tedious.
\documentclass{article}
\begin{document}
\section{introduction}
X-rays first discovered in 1895 are a form of Electromagnetic radiation
with\\
\vspace{10pt}
\hline
\vspace{10pt}
\noindent
wavelengths of the order of $10^{-10}m$ to simplify this an equivalent unit
of\\
\vspace{10pt}
\hline
\vspace{10pt}
\noindent
angstrom (A) is used.
\end{document}


\newenvironment; (b) Why not use\begingroup...\endgroup(see this answer)? – Ruixi Zhang Jul 19 '18 at 03:22