Sure, here's a list of some common HTML elements, organized by category:
### Document Structure:
- `<!DOCTYPE html>`: Document type declaration.
- `<html>`: Root element.
- `<head>`: Document metadata.
- `<title>`: Title of the document.
- `<meta>`: Metadata about the document.
- `<link>`: External resources like stylesheets.
- `<body>`: Document content.
### Text:
- Headings: `<h1>`, `<h2>`, ..., `<h6>`.
- Paragraph: `<p>`.
- Line Break: `<br>`.
- Bold: `<strong>`.
- Italic: `<em>`.
- `<span>`: Inline container for styling.
### Lists:
- Unordered List: `<ul>`.
- Ordered List: `<ol>`.
- List Item: `<li>`.
- Definition List: `<dl>`, `<dt>`, `<dd>`.
### Links and Navigation:
- Anchor: `<a>`.
- Navigation Section: `<nav>`.
### Images:
- Image: `<img>`.
### Tables:
- Table: `<table>`.
- Table Row: `<tr>`.
- Table Header Cell: `<th>`.
- Table Data Cell: `<td>`.
### Forms:
- Form: `<form>`.
- Input: `<input>`.
- Textarea: `<textarea>`.
- Select Dropdown: `<select>`, `<option>`.
- Button: `<button>`.
- Label: `<label>`.
- Fieldset and Legend: `<fieldset>`, `<legend>`.
### Semantic HTML:
- Article: `<article>`.
- Section: `<section>`.
- Header: `<header>`.
- Footer: `<footer>`.
- Main Content: `<main>`.
- Aside: `<aside>`.
- Mark: `<mark>`.
- Progress: `<progress>`.
- Time: `<time>`.
### Multimedia:
- Audio: `<audio>`.
- Video: `<video>`.
### Embedded Content:
- Inline Frame: `<iframe>`.
### Metadata:
- `<meta>`: Various metadata.
### Scripting:
- `<script>`: Embeds or references executable code (JavaScript).
This is not an exhaustive list, and there are many other HTML elements and attributes. The choice of elements depends on the specific needs and structure of your web page. If you have questions about a specific element or need more details, feel free to ask!
No comments:
Post a Comment