TRY: Create HTML elements
HyperText Markup Language, HTML, holds the text of a webpage together and structures the page using symantic elements.
- Opening-Tag
- Closing-Tag
- Text
- Attribute
<body>
<header>
<h1 id="RandomWebBits">
<Random Web Bits>
</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>
© Random Web Bits. All Rights Reserved.
</p>
</footer>
</body>