Sure, here are some basic examples of HTML code:
- Creating a Heading:
<h1>This is a Heading</h1>
- Creating a Paragraph:
<p>This is a paragraph.</p>
- Creating an Ordered List:
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
- Creating an Unordered List:
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
- Creating a Link:
<a href="https://www.example.com">Link Text</a>
- Inserting an Image:
<img src="image.jpg" alt="Image Description">
These are just a few examples of HTML code. With HTML, you can create a wide variety of content for your web page, including tables, forms, and more.