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