Wrong layout and not secure wordpress via digitalocean

All your links at your page point to moneytree as the root domain.

For example you have

http://moneytree/?page_id=2 

instead of

http://www.xmoneytree.com/?page_id=2

None of your assets (JS, CSS) are being loaded for the same reason:

for the same reason

When you installed WordPress you probably did not specify the correct value for your domain. You can do that either by re-installing WP or by editing wp-config.php file and add/edit these:

define( 'WP_HOME', 'http://www.xmoneytree.com' );
define( 'WP_SITEURL', 'http://www.xmoneytree.com' );

To make your website secure you need a Secure Sockets Layer (SSL) certificate, so that the data transfer between clients and your server is encrypted. Ask your host for SSL service if you don’t know how to.