Indicate that this is html.
<html>The begin of the real deal.
<head>The top of the document.
<body>The middle of the document.
Website title.
<meta>Metadata, idk how it works tbh
<style>...</style>Place for CSS
<script>...</script>Place for JavaScript
<noscript>...</noscript>Text that appears when JavaScript is turned off in the browser settings, or when not supported.
Large text, varying in size.
<p>...</p>Normal text
<a href="...">link name</a>A link, must be inside of a <p> element.
<br>Since enter's dont work in html, you gotta use this instead.
<b>...</b>Make your text bold. Must be inside <p>.
<i>...</i>Make your text slanted. Must be inside <p>.
<s>...</s>Strikethrough text. Must be inside <p>.
<hr>Just a line, doesn't need </he>.
Image. Doesn't need a </image>. The alt text is shown mostly when hovering. Also used for screen readers.
<iframe src="link" title="screen reader text">Embed a site inside your website.
<audio><source src="link">text shown when no audio support</audio>Put some audio in your website.
<video><source src="link">text shown when no video support</video>Put a video in your website.