Member-only story
HTML: What are elements?
In this introductory tutorial, we’ll explore one of the most fundamental concepts in HTML: elements.
But what exactly are elements? Simply put, elements are the building blocks of an HTML document. They are the individual components that make up a web page, and they are what give a web page its structure and meaning!
🤓 Want to stay up to date with web dev?
🚀 Want the latest news delivered right to your inbox?
🎉 Join a growing community of designers & developers!
Subscribe to my newsletter here → https://easeout.eo.page
So, let’s start with the basics. What are the different types of HTML elements? Well, there are dozens of different elements to choose from, but some of the most common ones include:
* Headings (<h1>
, <h2>
, <h3>
, etc.): These elements define headings and subheadings on your web page.
* Paragraphs (<p>
): These elements define paragraphs of text on your web page.
* Links (<a>
): These elements define links to other web pages or email addresses.
* Images (img
): These elements allow you to add images to your web page.
* Lists (<ul>
, <ol>
, <li>
): These elements allow you to create unordered or ordered lists on your web page.
* Tables (<table>
, <tr>
, <td>
): These elements allow you to create tables with data on your web page.
* Forms…