Adding some CSS with Navigation Bar!
So I have been working here and there on the site and have thrown a few things onto the page. I first threw on a very primitive navigation bar. I threw some CSS straight into the head tag:
<style>
ul
{list-style-type:none; margin:0; padding:0;}
li{float: left;} a:link,a:visited
{display:table; width:300px; color:#FFFFFF; background-color:#CC0000; padding:20px; border: solid #000000; text-decoration:none; text-align:center;}
a:hover,a:active
{background-color:#B00000;}
</style>
I created a list and put it in a box, taking the bullets out. I hard-coded(specified, manually) the width and where it should be on the page. Like I said earlier this is bad programming and bad practice. The only reason I did this was to decide on what I wanted it to look like. I also made the buttons change color when hovering over them, to look neat. Here is what the bar looked like after adding the names of each list item and taking the bullets away:
You might think, “Josh that looks like a preschooler made that.” Well I agree with you but keep in mind I was just playing around and testing looks out! Finally after seeing my grand, red masterpiece, I decided to create a separate CSS file and start the code over. I wanted the code to be a lot prettier and not be all jumbled anymore. I set the new HTML file up properly and added all the HTML5 tags and schematics (these can be found here). After everything was nice and neat, I created a proper banner. I set the position, gave it a size, even added a shadow box around it. It is currently Grey and white and pretty bland but this will all change. Below is a picture of what the new banner looks like along with the HTML code:
<a href=“#”>Home</a> This is just a simple link in HTML. Home is the name of the button while “#” is the link to where it will take you after it is pressed. For this example I would replace the # sign with the link to my homepage.
Next I just need to give the page some personality! Should be fun. More updates to follow!


