please how do someone make the upper part of a web look different from the main body | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

please how do someone make the upper part of a web look different from the main body

22nd Jun 2022, 5:03 AM
HwD
HwD - avatar
2 Answers
+ 1
What/how "different" means here? please come clear with the question. And please specify any of relevant web development language in tags rather than '<h1>' ☝ https://code.sololearn.com/W3uiji9X28C1/?ref=app
22nd Jun 2022, 6:18 AM
Ipang
+ 1
You can create separate sections with the use of a <div> tags to indicate navigation, header, and footer. <div id="nav"> <div class="header"> <div id="footer"> The new way is to use the Semantic elements. <nav> <main> <section> <article> <aside> Then you style each tag with css.
22nd Jun 2022, 3:13 PM
Chris Coder
Chris Coder - avatar