As we mentioned earlier in this course, Front-end web development involves many different technologies, and the landscape is constantly changing. In this section, we will dig deeper in HTML & CSS and all of the different aspects & frameworks of front-end web development, and how to hone and keep your skills up to date. Let’s start…
HTML lists elements:
HTML Tables:
Ordered and unordered lists are important elements for creating web pages. The most common use of these elements is for creating lists with bullet-points or numbers. However they are also used in various other cases, such as for creating navbars and long collection of objects.
In general most developers prefer the lists for displaying structured content than tables.
Browse HTMLGoodies’ rapid fire guide to different list types
Check this link HTML docs on lists. It is very useful and you will probably see it again when you’re Googling for a problem!
In this section you can find a lot of helpful links to other content. This is a supplemental material for you if you want to dive deeper into some concepts.
Back in the old days, tables were very important elements in HTML, since they were the major elements to display any sort of data. In addition tables were used to wrangle the layout of your page into some semblance of order. Now, thanks to CSS, tables are not that often used, however they are still the go-to way to get structured data onto the page.
Get a quick look at HTML Tables through this short introductory article by Flavio Copes: Styling HTML Tables with CSS
Follow these 2 interactive screencasts on tables at Scrimba:
Take another short break and carefully study the following MDN article that talks about advanced table features as well as how to create web accessible tables: HTML table advanced features and accessibility
Check this link HTML Docs on Tables, which you’ll no doubt see again.
In this section you can find a lot of helpful links to other content. This is a supplemental material for you if you want to dive deeper into some concepts.