Hi All,
As per the tasks instructions, here are my answers:
- <div>
- <blockquote>
- <p>
- <ol>
- <ul>
- <li>
- <nav>
- <menu>
- <span>
- <time>
- <q>
- <img>
<div>
The div tag is used to divide parts of a webpage up. For example, if you wanted to insert a social media plugin, the div tag would be used to divide this area up.
<blockquote>
The blockquote tag is used in an extended quotation of text.
<p>
The p tag starts a new paragraph. I would use it at the start of this sentence on a webpage.
<ol>
The ol tag is used when wanting to list some content in order. For example, if listing peoples ages in ascending order.
<ul>
The ul tag is for listing items/content not in order.
<li>
The li tag is used in the
- and
- tag as this defines the actual item being listed.
<nav>
The nav tag defines a navigation area on the webpage where a group of links are located. Usually seen at the left side of website or in the footer area.
<menu>
Similar to the ol tag in that it lists items/content, however, interactive code can be placed within and there is no limit to the amount of items/content within.
<span>
The span tag is similar to the div tag but differs in that the code it is targeting is for that line of code – it is inline code specific as opposed to block level.
<time>
The time tag allows the time to be placed within a webpage. Timezones can be edited to suit different locations.
<q>
The q tag shows indicates the content enclosed within is a quote.
<img>
The img tag is for placing images in your webpage.
If anyone thinks I have not answered this correctly, please don’t hesitate to tell me! I am keen to learn and am open to feedback / constructive criticism.
Thank!
Thanks!