The image element is used to embed images into an HTML document.
<img src="image.jpg" alt="Description of the image">
The video element is used to embed videos into a webpage.
<video controls>
<source src="video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
Hyperlinks, created using the anchor element (`<a>`), allow users to navigate to other web pages or resources.
<a href="https://www.example.com">Visit Example Website</a>
The ID attribute provides a unique identifier for an HTML element. It is used for targeting elements with CSS or JavaScript.
<div id="myDiv">Content goes here</div>
The target attribute is used with anchor elements to specify where the linked content will be displayed when clicked.
<a href="https://www.example.com" target="_blank">Open in a new tab</a>
Linking within the same page is achieved using anchor elements with the appropriate ID attribute.
<a href="#section2">Jump to Section 2</a>
<h2 id="section2">Section 2</h2>
File paths are used to link external resources, such as CSS files, images, and scripts.
<img src="images/picture.jpg" alt="Image">
<link rel="stylesheet" href="styles/main.css">
HTML elements are arranged in a hierarchical family tree structure, with parent-child relationships.
<div>
<p>This is a child paragraph.</p>
</div>