Wednesday, 6 August 2014

Project One: New HTMLTags

Today in class we covered a few more tags to add to the list that we learn't last week. Some of these new tags I have already previously tried myself when researching the different HTML tags that are available. The new tags that we covered include:

- <br></br> (this tag is used to make an extra break between elements on a webpage.)
- <div></div> (this tag is used to divide up the web page, it is noticeable in HTML but will be when we start using CSS.)
- <span></span> (this tag is used to isolate some text. It is an inline level element. This tag to is hard to see without CSS.)
- <ul></ul> and <ol></ol> (these are two types of list tags you can create. <ul></ul> is unordered lists and <ol></ol> is for ordered lists.)
- <li></li> (inside either of the above list types you must add list items. Every list item defined uses this tag.)
- <a> (anchor tag.)
-  <a href="mailto: email address">tab name</a> ( used to create email links.)
- <!--this is a comment--> (you can use this to write comments and anything inside the comment start and end tags will not be rendered by the browser.)

No comments: