TRY: Create HTML elements

HyperText Markup Language, HTML, holds the text of a webpage together and structures the page using symantic elements.

  1. Opening-Tag
  2. Closing-Tag
  3. Text
  4. Attribute

<body>


  

<header>


    

<h1 id="RandomWebBits">

&lt;Random Web Bits&gt;

</h1>


    

<nav>


      

<ul>


        

<li>

<a>

Link one

</a>

</li>


        

<li>

<a>

Link two

</a>

</li>


        

<li>

<a>

Link three

</a>

</li>


      

</ul>


    

</nav>


  

</header>


  

<main>


    

<time datetime="2023-07-25">

July 25, 2023

</time>


    

<article id="HTML-ELEM" class="WebBits">


      

<h2>

Short Article

</h2>


      

<p>

HTML elements structure a page in the web. They apply symantic meaning through the use of the tag name and the tag's placement.

</p>


    

</article>


  

</main>


  

<footer>


    

<p>

&copy; Random Web Bits. All Rights Reserved.

</p>


  

</footer>


</body>