Currently I'm using biblatex (with biber as back-end). I'm using \parencite{} or \textcite{} to create references.
I would like to know, if it is possible create footnotes (with number reference) for certain entry-types such as @online or @booklet instead of adding them to the Bibliography.
In addition to that would it also possible to customize the text of the footnote in a certain pattern, e.g., title + url + urldate.
Update: Here is the latex code and how my bib file looks like:
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=numeric, defernumbers, backend=biber]{biblatex}
\usepackage{hyperref}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{book1,
author = "Max Mustermann",
title = "My Book",
date = "1980",
isbn = "123456789",
}
@booklet{online1,
author = "John Doe",
title = "Title of Online Reference",
url = "http://www.online-resource.com",
howpublished = "XYZ",
urldate = "2019-05-04",
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Reference book \parencite{book1}. \\
I want footnotes for online resources like that \footnote{John Doe. \textit{Title of Online Reference}. http://www.online-resource.com (accessed 04.05.2019)} instead of \parencite{online1}.
\printbibliography
\end{document}
I want to create a footnote with the values from the bib-entry, e.g.\addfootcite{online1} should create the footnote shown in the result but not add them to the Bibliography.

