... the underlying data store for a Football Pool (that's American Football for you, Peter). Define a Team class that contains such nonsense as their name, their logo, etc. Then another class for a Game; contains two pointers to the Teams that are playing each other, which one's the home team, which one is favored by how much, etc. Finally a GameWeek class, which is a container for the Games that are to be played in a given week.
No inheretance, but lots of aggregation. Once done, you can then use this store to display a list of the week's Games in HTML or something, using the Game's Render() method, which would call the Team's Render method for rendering the logos....
Might be fun. Note that there should be the standard disclaimer that this is "for educational purposes only...blah, blah, blah...".