1HTML Elements are what make up HTML in general.
2This is a list of the main Html element tags.
3(There are more not included in this list.)
4<!DOCTYPE> Defines the document type
5<html> Defines the root of an HTML document </html>
6<title> Defines a title for the document </title>
7<header> Defines a header for a document or section </header>
8<main> Specifies the main content of a document </main>
9<footer> Defines a footer for a document or section </footer>
10<p> Defines a paragraph </p>
11<a> Defines a hyperlink </a>
12<b> Defines bold text </b>
13<br> Defines a single line break </br>
14<button> Defines a clickable button </button>
15<div> Defines a section in a document </div>
16<footer> Defines a footer for a document or section </footer>
17<h1> to <h6> Defines HTML headings </h1> to </h6>
18<img> Defines an image </img>
19<ol> Defines an ordered list </ol>
20<ul> Defines an unordered list </ul>
21<li> Defines a list item </li>
22<script> Defines a client-side script </script>
23<span> Defines a section in a document</span>
24<table> Defines a table </table>
25<td> Defines a cell in a table</td>
26<th> Defines a header cell in a table </th>
27<tr> Defines a row in a table </tr>
1Html is a markup kanguage based on XML. It uses nested <objects>
2These objects are defined by the standards body W3C
3they are usually used in pairs ... <thing> </thing>
4A .html file has a bunch of these tags
5information to be displayed goes between the start and end tags
6 <p> This text is now a paragraph</p>
7 Elements can have unique identifiers used by javascript and CSS
8 <p id="fruit"> Apple Orange Banana </p>
9 Elements can be styled by belonging to a class of Elements
10 <p class="redThings"> This text will be colored red if "redThings" says so
11
1The HTML <code> element displays its contents styled in a fashion intended to indicate that the text is a short fragment of computer code. By default, the content text is displayed using the user agent's default monospace font