Logo Code X Community

Lesson 1: Basic Tag Explanation

In the previous lesson, you learned about the basic structure of an HTML document. Now in this lesson, let's go over the core tags you saw in that example.

📌 Based on the Previous Code (Important)

<title> Tag Example

The most important part you'll focus on inside the <head> for now is the <title> tag.

<head>
<title>Webpage</title>
</head>

Body Tag

The HTML <body> tag defines the main content of the HTML document. This is the section that will be directly visible on your webpage.

Here's a simple example:

<body>
<h1>Welcome to My Website</h1>
<p>This is a sample paragraph.</p>
</body>