Mark-up is a term from print editing - the editor would go through the text and add annotations (i.e. this in italic, that in bold) for the printers to use when producing the final version. This was called marking up the text.
A computer mark-up language is just a standardised short-hand for these sorts of annotations.
HTML is basically the web's standard mark-up language, but it's rather verbose.
A list in HTML:
<ul>
<li>Item one</li>
<li>Item two</li>
</ul>
Markdown has is a specific markup language, having its own simpler simple syntax.
A list in Markdown:
* Item one
* Item two
Both of these will work in your stackoverflow posts.
Markdown can't do everything HTML can, but both are mark-up languages.
