< section> Section Tag < /section>
The section tag encloses a block of content. In this example, it defines a section about great white sharks.
Theres a common belief that great whites among a lot of other sharks must constantly be in motion to breathe. This is false for most species, including great whites.
The code that produced the output above looks like this:
< section >
< p>< b>Section Tag< /b >< /p >
< p > The section tag encloses a block of content. In this example, it defines a section about great white sharks. Theres a common belief that great whites among a lot of other sharks must constantly be in motion to breathe. This is false for most species, including great whites.< / p >
< /section >
< figure> Figure Tag < /figure>
The figure tag specifies self-contained content, like illustrations, diagrams, photos, code listings, etc.
The code that produced the output above looks like this:
< p>< b>Figure Tag< /b >< /p >
< figure >
< br >
< img width ="25% src ="https://guloinnature.com/wp-content/uploads/2023/11/1-1-e1700324409548.png">
< br >
< figurecaption>Image of a great white.< /figurecaption>
< /figure >
< aside> Aside Tag < /aside>
The aside tag defines some content aside from the content it is placed in.
The code that produced the output above looks like this:
< p>< b>Aside Tag< /b >< /p >
< aside >
< p> Sidebar < /p>
< p> This is a sidebar with all the links on this page < /p >
< ul>
< li> < a href="https://www.w3schools.com/tags/tag_section.asp" target="blank" href>Section Tag< /a>< /li>
< li> < a href="https://www.w3schools.com/tags/tag_figure.asp" target="blank" href>Figure Tag< /a>< /li>
< li> < a href="https://www.w3schools.com/tags/tag_aside.asp" target="blank" href>Aside Tag< /a>< /li>
< /aisde>