How to utilize article, section and aside elements together? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to utilize article, section and aside elements together?

18th Feb 2017, 5:23 AM
Khuntheng Puthirithea
Khuntheng Puthirithea - avatar
2 Answers
+ 1
This is an exemple ^_^ <!DOCTYPE html> <html> <head> <meta charset="utf_8"> <title>Test</title> </head> <body> <header> <img class="logo" src="logo.png" alt="logo"> <nav> <ul> <li>Home</li> <li>Services</li> <li>Contact</li> </ul> </nav> </header> <section> <article> This Is Article with BLA BLA BLA .... </article> <aside> <h1>Top Members</h1> <ul> <li>Hamza</li> <li>Abdou</li> <li>Karim</li> </ul> </aside> </section> <footer> All Rights Reserved By sololearn.com </footer> </body> </html>
19th Feb 2017, 9:18 PM
BOUTAYEB Abdelilah
BOUTAYEB Abdelilah - avatar