Understanding HTML Elements
Hello! Today we want to talk about HTML elements. HTML elements give us the ability to define the structure of a web page. By using HTML tags, we can easily organize content. The basic elements range from <p>
for paragraphs to <div>
for content division, each playing an essential role.
One of the first elements you should get acquainted with is <div>
. This element helps us categorize and organize different sections of a page. For example, if you want to create a non-linear layout, you can use <div>
to encapsulate it.
Next up are header tags. Tags such as <h1>
, <h2>
, and... are used to define headings. These tags can assist search engines in understanding which parts are most important, improving SEO.
Additionally, you can use other elements such as <ul>
for lists, <img>
for images, and <a>
for links. Each of these elements helps us make our content more accessible and usable.
Example Code
<!DOCTYPE html>
<html lang="fa">
<head>
<meta charset="UTF-8">
<title>Example of HTML Elements</title>
</head>
<body>
<h1>Page Title</h1>
<div>
<p>This is a paragraph.</p>
<ul>
<li>First Item</li>
<li>Second Item</li>
</ul>
</div>
</body>
</html>
Code Descriptions
1. <!DOCTYPE html>
This line specifies the type of document, indicating that this is an HTML5 file.
2. <html lang="fa">
The
<html>
tag indicates that this document is HTML, and its language is Persian.3. <head>
The
<head>
section includes information such as the page’s title and character encoding.4. <meta charset="UTF-8">
This line specifies that the page should use UTF-8 encoding for characters.
5. <title>Example of HTML Elements</title>
This line sets the title of the page displayed in the browser title bar.
6. <body>
This section contains the main content of the page.
7. <h1>Page Title</h1>
This line displays the main title of the page, usually the subject of its content.
8. <div>
This element groups related content into a single block.
9. <p>This is a paragraph.</p>
This line shows a paragraph of text.
10. <ul>
This element creates an unordered list.
11. <li>First Item</li>
This line represents an item in the list.
12. <li>Second Item</li>
This line represents the second item in the list.
13. </div>
This line marks the end of the
<div>
section.14. </body>
This line marks the end of the
<body>
section.15. </html>
This line signifies the end of the HTML document.