0
can someone please rearrange this elements in generic HTML5. head,footer,header and nav
I've used all the options I know and the system has been saying wrong answer
3 Respuestas
+ 7
<!-- I will create Div tags with ids for each -->
<!DOCTYPE html>
<HTML>
<HEAD>
<TITLE> Put your title here </TITLE>
</HEAD>
<BODY>
<DIV ID="wrapper">
<DIV ID="header">
<P> write you code for header here </P>
</DIV>
<DIV ID="Nav">
<P> Stuff for nav here usually make a ul tag for your linls</P>
</DIV>
<DIV ID="footer">
</DIV>
</DIV>
</BODY>
</HTML>
ok now you can target each id in css i wrapped the entire code in a wrapper div so you can target the enitre page and center or do whatever you want with it. Hope this helps and a like would be great thanks!!
+ 1
HTML5
Head, Header, Nav, Footer
- 1
Head header nav footer