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>
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Document</title>
7</head>
8<body>
9
10</body>
11</html>
1<a href="" rel="" target=""></a>
2<abbr></abbr>
3<div></div>
4<span></span>
5<html></html>
6<head></head>
7<body></body>
8<ul></ul>
9<ol></ol>
10<lh></lh>
11<li></li>
12<table></table>
13<input type="" />
14<meta http-equiv="" name="" content="" charset="" />
15<title></title>
16<thead></thead>
17<dir></dir> WARNING: Don't use the dir tag. Use the ul tag instead.
18<tbody></tbody>
19<tr></tr>
20<th></th>
21<pre></pre>
22<p></p>
23<nav></nav>
24<main></main>
25<header></header>
26<h1></h1>
27<h2></h2>
28<h3></h3>
29<h4></h4>
30<h5></h5>
31<h6></h6>
32<footer></footer>
33<i></i>
34<b></b>
35<u></u>
36<style></style>
37<link type="" rel="" href="" />
38<img src="" alt="" srcset="" width="" height="" />
39<q></q>
40<script src="" type="" defer></script>
1The basic elements of an HTML page are:
2
3A text header, denoted using the <h1>, <h2>, <h3>, <h4>, <h5>, <h6> tags.
4A paragraph, denoted using the <p> tag.
5A horizontal ruler, denoted using the <hr> tag.
6A link, denoted using the <a> (anchor) tag.
7A list, denoted using the <ul> (unordered list), <ol> (ordered list) and <li> (list element) tags.
8An image, denoted using the <img> tag
9A divider, denoted using the <div> tag
10A text span, denoted using the <span> tag
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