Export an Anki desk as an Html Glossary
It is based on https://ankiweb.net/shared/info/2751403243
copy the py file into Anki's add-on folder and restart Anki, or use the Anki's tools, Addons Browse & install menu. See here: https://ankiweb.net/shared/info/156019013
create a custom.css in the directory of the htm file.
For example, if you want that the first column will be the question and the second be the answer, use this custom.css file:
.Question{
float: left;
}
.Answer{
float: left;
}