This is how I create GeoGebra applets to embed on this website. I use a Mac, but I assume these instructions would not be hard to adapt for Windows.
- On your computer, use GeoGebra to create a GGB file.
- Press shift-command-M. The needed code is now on the clipboard.
- Paste into an empty text document.
- Look for "true" and "false" parameters, and decide if you want to change any of them.
- Save the document as an html document, making a note of the width and height that are mentioned in the code.
- In the html document where you want to embed the applet, use the following code:
<iframe src="" width="" height="" frameborder="0">
</iframe>src is the path to the document you created
width and height should be slightly greater than the dimensions you noted in #5, maybe 10 to 20 pixels extra.
That's all!