You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pre-HTML5 it was a common markup pattern to use <div> tags to section and break up markup. However, with the new HTML5 specification new elements that are "semantically" descriptive, have been introduced.
Some elements that you can add to break up this webpages mockup are <header>, <nav> and <footer> and <section>. This also ensures you are writing HTML5 markup that matches the latest specification, makes the markup more readable (which can save a lot of time with a webpage as large as this one) and in some cases may reduce the amount of CSS you have to write as well! Using these element tags also optimizes a webpage to be found by search engine algorithms.
The text was updated successfully, but these errors were encountered:
Pre-HTML5 it was a common markup pattern to use
<div>
tags to section and break up markup. However, with the new HTML5 specification new elements that are "semantically" descriptive, have been introduced.Some elements that you can add to break up this webpages mockup are
<header>
,<nav>
and<footer>
and<section>
. This also ensures you are writing HTML5 markup that matches the latest specification, makes the markup more readable (which can save a lot of time with a webpage as large as this one) and in some cases may reduce the amount of CSS you have to write as well! Using these element tags also optimizes a webpage to be found by search engine algorithms.The text was updated successfully, but these errors were encountered: