Suggestion: The clouds look cool but they dont match and get kinda sloppy (the side bars dont match with the top and bottom ones.) Photoshop can slice an image up for you and all you'd have to do is put text in absolute positions:
<div id="Home" style="postion: left: 10px; right: 10px;">Hello World</div>
Hope that helps.
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
|