[Tex/LaTex] Latex to HTML conversion (basic explanation)

conversionhtmllatex2htmlpandoctex4ht

I have been looking around for an easy way to save my .tex into a .html file, but all the questions/answers are very technical, and I have not found one that is accessible to me/beginners. I have seen a bunch of names of presumably packages (hlatex? tex4ht?) but no basic explanation of 'how to', from A to Z. I mean, actually basic instructions (do i need to install anything? what? where do i run codes? etc..)
Anyone available to do that for me?
Thanks you SO much!!
Giulia.

Best Answer

Try pandoc

long version:

pandoc -f filename.tex -t html -o output.html

short version:

pandoc filename.tex -o output.html