So I wrote my code for a Snake game for a kid I know and the darned thing won\'t embed itself in html.
Snake
It seems that SnakeGame class in in the view package, so your applet tag should look like:
SnakeGame
view
<applet width=200 height=100 code="view.SnakeGame.class">
Generally you specify 'package.class' in the 'code' attribute, i.e. com.stackoverflow.MyClass.class
com.stackoverflow.MyClass.class