Here are some general examples of HTML code to illustrate its structure:
1. Basic structure of a web page:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
</body>
</html>
2. Headings, paragraphs, and links:
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<a href="https://www.example.com">This is a link</a>
3. Images and lists:
<img src="image.jpg" alt="Image description">
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
4. Tables and forms:
<table>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
</tr>
</table>
<form action="/submit" method="post">
<input type="text" name="name">
<input type="submit" value="Submit">
</form>