Basic Bibliography
Although this is the "simple" approach, it may not be the best choice for some users. This bibliography must be created completely by hand, within the text of the 
.tex file. Everything is done by hand, including the sorting, italicizing text where appropriate, etc. If you have only a few references, this is the simplest way to go.
If you have a long list of references—and if you may be writing more than one paper or article on this topic, you will save time with a bibliography that uses references stored in a separate file. It also gives the author more choices regarding the appearance of the bibliography.
To create a basic bibliography, we do not need to add any packages . We will use the 
thebibliography environment:
 
\begin{thebibliography}{99}
\bibitem{Harris19}
Harris, Kathleen I., "Fred Rogers and Children's Spirituality: Valuing the Uniqueness of Others and Caring for Others.” \emph{International Journal of Children’s Spirituality}, vol. 24, no. 2, May 2019, pp. 140–54. \emph{EBSCOhost}, https://doi.org/10.1080/1364436X.2019.1619526.
\bibitem{Hutchison21}
Hutchison, Phillip J. "Mister Rogers' Holy Ground: Exploring the Media Phenomenology of the Neighborhood and Its Rituals." \emph{Journal of Media & Religion}, vol. 20, no. 2, Apr. 2021, pp. 65-78 \emph{EBSCOhost}, https://doi.org/10.1080/15348423.2021.1925464.
\end{thebibliography}
Note that every entry begins with the command 
\bibitem{cite_key}. The 
cite_key is a unique identifier for each reference. A common practice is to use the surname of the first author, followed by the last two digits of the year of publication—such as 
Harris19. This 
cite_key is then used in citations within the LaTeX document.
For More Information
A very good explanation of the basic bibliography is available, entitled 
"LaTeX Bibliography Management". This chapter covers the options with a basic bibliography, as well as in-document citations.  It's part of the wikibook: 
LaTeX.