Yes this is a really simple website design, maybe try to integrate some sort of language shifter so people from different areas can read your links and headings. I looked at your source code and your using style tags right inside the same page as your html, note that its okay to do that but if you include a style sheet file and in turn will make it much easier for you to create extra pages, below ill include the tag.
HTML:
<link type="text/css" rel="stylesheet" href="styles.css" />
Then simply create a file called styles.css and put your css coding within that file, place the above tag on each page you want the styles to show up on.
Lastly get yourself out there more
Below I have meta tags that help pick out key words from your website that you want placed on search engines so it is easier for users to find your website. Place the below codes in between your <head></head> tags.
HTML:
<meta name="keywords" content="Record Label, Music, Music Label, etc..." />
<meta name="description" content="Short description of your website content goes here" />
Hope this helps you out some
-MobsterMind