HTML Code
HTML Code
```html
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Hello, World!</h1>
</body>
</html>
```
2. **Headings**:
```html
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
```
3. **Paragraphs**:
```html
<p>This is a paragraph.</p>
```
4. **Links**:
```html
```
5. **Images**:
```html
```
6. **Lists**:
```html
<ul>
</ul>
<ol>
</ol>
```
7. **Tables**:
```html
<table>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
</tr>
<tr>
</tr>
</table>
```
8. **Forms**:
```html
<label for="name">Name:</label>
<label for="email">Email:</label>
</form>
```
```html
```
```html
```
These HTML code snippets cover some of the most basic elements of web development. You can use
and combine these elements to create web pages with various structures and styles. Remember to
customize the attributes and content according to your specific needs.