web app for use as a toolbar to open other programs

56 views Asked by At

I need a toolbar program, that opens other programs by clicking on the respective link. Is it possible to realize this as a Web App with HTML, CSS and JS?

I'm a beginner, i didn't try it

1

There are 1 answers

2
escapingSamsara On

Depending on what you mean with programs it is possible to create a toolbar program as a web application. You can create buttons with links to other programs and use JavaScript to open the programs (eg websites) when the buttons are clicked. for example like so:

  <div class="toolbar">
  <button onclick="window.open('https://www.google.com')">Google</button>
  <button onclick="window.open('https://www.facebook.com')">Facebook</button>
  <button onclick="window.open('https://www.youtube.com')">YouTube</button>
</div>