Open mariamisa opened 4 years ago
why you put everything on divs? you don't have to put h3 el on div https://github.com/GSG-G9/code-SOZAbit/blob/83ab0b5ce6d5be8a1c29b6a4d32156db344560c0/index.html#L14-L19 for example :
<div class="logo"> <img src="images/logo-final.png" alt="site logo"> <h3 class="teamName">Code SOZAbit</h3> </div>
read more https://hackernoon.com/how-to-write-semantic-html-dkq3ulo
here you can use <nav> instead of <div > https://github.com/GSG-G9/code-SOZAbit/blob/83ab0b5ce6d5be8a1c29b6a4d32156db344560c0/index.html#L20-L24 each element of the content must be able to identify itself within the document, <span> and <div> These two tags were conceived to label any content that could not be labeled by any other semantic tag.
<nav>
<div >
<span> and <div>
read more about HTML5 (semantic elements) https://www.pluralsight.com/guides/semantic-html
Take a look at this issue and read it and the mentioned resource carefully
https://github.com/GSG-G9/gang-portfolio/issues/15
why you put everything on divs?
you don't have to put h3 el on div https://github.com/GSG-G9/code-SOZAbit/blob/83ab0b5ce6d5be8a1c29b6a4d32156db344560c0/index.html#L14-L19 for example :
here you can use
<nav>
instead of<div >
https://github.com/GSG-G9/code-SOZAbit/blob/83ab0b5ce6d5be8a1c29b6a4d32156db344560c0/index.html#L20-L24 each element of the content must be able to identify itself within the document,<span> and <div>
These two tags were conceived to label any content that could not be labeled by any other semantic tag.