Lesson 1 - Coding in HTML

This is putting the lists into the paragraph. Paragraphs are Block level Elements which means they have their own "section"

Here we have paragraph 2 and I am going to Italicize some text and make some text Bold
I plan on using each little section of this course into different little Directories which will all be listed on the front page of Bootcamp

I have played around a little with this using what I have learned on other courses as well so that I am Kinda ahead of the curve with most courses when it comes to the HTML portions of the lessons, I am sure I will get this much ahead when it comes to the CSS and other parts so that I will know about things and Just use other courses to maybe learn something not covered in other courses. For instance non of the other courses I have done so far in the HTML section covered nested lists. I kinda worked it out before Colt mentioned how to do it, Next is to learn how to Move the text that I have Not put into the divs so that it is Below the divs rather than between the floated bits

This should be fun

Right, here in Bootcamp we are "learning" Attributes and their Values for instance the <img> tag and src Attributes the other common Attribute is the href. so the image attribute is <img src=""> this is a self closing tag so here is the one completed. <img src="images/misty7.jpg" alt="Does contain the most loved cat in the world"; style="width:500px; height:300px> this also contains the alt attribute which is correct form for doing images

Does contain the most loved cat in the world

The href attribute is NOT a self closing tag and as such needs closing tag so it looks like this <a href="http://www.google.co.uk" target="_blank">Click here to go to google</a> This shows the correct form of doing a link and the second part which is target tells the browser HOW to open the new page

Click here to go to Google

Okay the course now has moved over onto doing tables and Forms. therefor we shall be proceeding on to Page 2