I spent the rest of the lesson working on the skeleton frame work and trying to make sense of all this foreign code that we have been given to work on after looking at it for an hour or two I started to see what controlled what and immediately this gave me a clearer idea of how to manipulate my webpage into what I wanted, not by what I could do. Below is a screenshot of my website thus far with about 30 minutes of work.
CSS3 Code:
This piece of code above is the code I used to get the filling background image. Basically it is telling the background at the URL of: to not repeat, to be in the center vertically and the center horizontally and be fixed in that position. The 'cover' code makes the background cover the view port size and when resizing animate with a 'zoom' a really nice a simple piece of code.
HTML5 Code:
In my HTML code it is currently very simple it has a <div> which is taking on the class of the .nav class in my CSS (more on that later) with two paragraphs within that <div>, one for my main title and one for my lesser subheading which both have different opacities and colours.
For my navigation I have a simple unordered <ul> list <li> with links to each of my other content pages and then the closing </div> tag, obviously this is barebones stages and I want to completely re-do the navigation but still a good start!
In my HTML code it is currently very simple it has a <div> which is taking on the class of the .nav class in my CSS (more on that later) with two paragraphs within that <div>, one for my main title and one for my lesser subheading which both have different opacities and colours.
For my navigation I have a simple unordered <ul> list <li> with links to each of my other content pages and then the closing </div> tag, obviously this is barebones stages and I want to completely re-do the navigation but still a good start!