HTML Elements

Part 2 Technology Updated September 12, 2026

HTML Elements & Attributes

An HTML element is defined by a start tag, some content, and an end tag.

Example

<p class="intro">This is a paragraph with a class attribute.</p>
<a href="https://google.com" target="_blank">Visit Google</a>
<img src="/static/images/logo.png" alt="Company Logo" width="200">

Nested Elements

HTML elements can be nested (elements can contain elements):

<div class="card">
    <div class="card-header">Header</div>
    <div class="card-body">Content goes here</div>
</div>