I tried to use this idea, but I'm not sure how to set the 'target' in your example: [[button:some target][This is a button]] For example, I tried this: [[button:http://www.sambanya.com/artgallery.html][Art Gallery Page Link]] But received this error: user-error: Unable to resolve link: "button:http://www.sambanya.com/artgallery.html" Thanks, Sam On Thu, Feb 17, 2022, at 5:10 PM, Juan Manuel MacĂ­as wrote: > Hi Samuel: > > Samuel Banya writes: > > > Is it possible to create HTML style buttons using Org Mode itself? > > One possibility is to use a custom link. For example: > > #+begin_src emacs-lisp > (org-link-set-parameters "button" > :face '(:foreground "green" :underline t) > :export (lambda (path desc backend) > (when (eq backend 'html) > (format "
" path desc)))) > #+end_src > > #+HTML_HEAD: > > [[button:some target][This is a button]] > > NB: I have borrowed the style from here: https://www.w3schools.com/csS/css3_buttons.asp > > Best regards, > > Juan Manuel >