1.<main>
<html>
<body>

<h1>The main element</h1>

<main>
  <h1>Most Popular Browser</h1>
  <p>Chrome the most used browsers today.</p>

  <article>
    <h2>Google Chrome</h2>
    <p>Google Chrome is a web browser developed by Google, released in 2008. Chrome is the world's most popular web browser today!</p>
  </article>
  
</main>

</body>
</html>
HTML
2.<header>
<html>
<body>

<header>

  <h1>Hello World</h1>
  <p>Posted by John Doe</p>
  <p>How to mfast learn html and css</p>

</header>

</body>
</html>
HTML
3.<nav>
<html>
<body>

<h1>The nav element</h1>

<nav>
<a href="/html/">HTML</a> |
<a href="/css/">CSS</a> |
<a href="/js/">JavaScript</a> |
<a href="/python/">Python</a>
</nav>

</body>
</html>
HTML
4.<section>
<html>
<body>

<section>
  <h1>WWF</h1>
  <p>The World Wide Fund for Nature (WWF) is an international organization working on issues regarding the conservation, research and restoration of the environment, formerly named the World Wildlife Fund. WWF was founded in 1961.</p>
</section>

<section>
  <h4>My Email Address</h4>
  <p>[email protected]</p>
</section>

</body>
</html>
HTML
5.<article>
<html>
<body>

<h1>The article element</h1>

<article><!--blog post-->
  <h2>Google Chrome</h2>
  <p>Google Chrome is a web browser developed by Google, released in 2008. Chrome is the world's most popular web browser today!</p>
</article>

<article> <!--user comment-->
  <h2>Crstiano Ronaldo</h2>
  <p> Cocacola is very bad drink</p>
</article>

</body>
</html>
HTML
6.<aside>
<html>
<body>

<p>My family and I visited The Epcot center this summer. The weather was nice, and Epcot was amazing! I had a great summer together with my family!</p>

<aside>
  <h4>Epcot Center</h4>
  <p>Epcot is a theme park at Walt Disney World Resort featuring exciting attractions, international pavilions, award-winning fireworks and seasonal special events.</p>
</aside>

</body>
</html>
HTML
7.<footer>
<html>
<body>

<h1>The footer element</h1>

<footer>
  <p>Author: Hege Refsnes<br>
  <a href="mailto:[email protected]">[email protected]</a></p>
  <a href="https://www.w3schools.com/" >Copyright 1999-2025</a>
</footer>

</body>
</html>
HTML
8.<details> and 9.<summary>
<html>
<body>

<h1>The detalis element</h1>

<details open>
  <summary> Hello World </summary>
  <p>HTML learning Easy Web development</p>
</details>

</body>
</html>
HTML
10.<figure> and 11.<figcaption>
<html>
<body>

<h1>The figure and figcaption element</h1>

<figure>
  <img src="facebook.png" alt="facebook logo" style="width:30%">
  <img src="instergram.jpeg" alt="instergram logo" style="width:30%">
  <img src="youtube.png" alt="youtube logo" style="width:30%">
  <figcaption> Facebook,instergram,youtube Website Logo</figcaption>
</figure>

</body>
</html>
HTML
Scroll to Top