Do you know if it\'s possible to create interactive web pages in Go? For example, having one or multiple buttons, or a combo box that refreshes the page with the data being
No, you cannot program interactive web pages in Go. This is because Go programs run on the server, not in the web browser.
To do something interactive, you have to write JavaScript programs that communicate with the Go program on the server.
The Go program is somehow involved with the interactive web app, but the interactivity comes from the JavaScript part.