Full Transcript

·YouTLDR

2. COMO HACER UNA PAGINA WEB HTML | ESTRUCTURA HTML de UNA PAGINA WEB 💙ESTRUCTURA HTML BÁSICA

6:47764 summary words · ~4 min readEnglishBy ByspelTranscribed Jul 16, 2026
Analyze another video with Pro30-day money-back guarantee
Summary

This video teaches beginners how to structure a basic HTML webpage using essential elements and introduces Sublime Text as a code editor for efficient HTML development.

Understanding HTML structure is foundational for web development, enabling viewers to create and troubleshoot basic websites while avoiding common syntax errors.

Section summaries

0:00-0:25

Intro / Course Overview

skip

The instructor introduces the video's goal: teaching how to structure an HTML document for building websites. They mention covering main HTML elements without diving into all of them, setting expectations for a foundational tutorial.

  • Focus on core HTML elements for basic webpage structure
  • Sublime Text will be used as the code editor in this session

Sets up the video but contains no actionable content.

0:25-1:15

Installing Sublime Text

watch

The instructor demonstrates downloading and installing Sublime Text from its official website. They explain its utility as a code editor for programming languages, including HTML, and walk through the installation process step-by-step.

  • Sublime Text is a multi-language code editor
  • Download from SublimeText.com and install via standard Windows installer

Essential for following along with the coding examples in the video.

1:15-1:41

Opening HTML Files in Sublime Text

watch

The instructor shows how to open an existing index.html file in Sublime Text by right-clicking the file and selecting the editor. They emphasize the visual benefits of using Sublime Text for editing HTML code.

  • Right-click HTML files to open with Sublime Text
  • Sublime Text highlights syntax for easier editing

Critical for hands-on practice with the editor.

1:41-2:23

Editing and Saving in Sublime Text

watch

The instructor edits the HTML file, changing text and saving changes. They demonstrate how syntax highlighting helps identify unclosed tags and explain the process of saving and reloading the page to see updates.

  • Use File > Save to apply changes
  • Syntax colors help spot unclosed tags visually

Teaches practical editing workflow and error detection.

2:23-2:59

HTML Elements Explained

watch

The instructor revisits HTML structure, defining elements as combinations of opening/closing tags and content. They explain how the <title> tag affects the browser tab and reinforce the importance of the <body> tag for visible content.

  • HTML elements = opening tag + content + closing tag
  • Body content is what displays on the webpage

Core concept for understanding HTML syntax and structure.

2:59-4:11

Heading Tags (H1-H6)

watch

The instructor demonstrates H1-H6 tags, showing how each level reduces font size. They explain that headings are used for titles and subtitles, and viewers see live examples of H1, H2, H3, and H4 in action.

  • H1 is largest, H6 is smallest
  • Use headings to structure content semantically

Key for organizing webpage content effectively.

4:11-5:04

Empty Tags (e.g., <br>)

watch

The instructor introduces empty tags like <br>, which perform actions without content. They show how <br> creates line breaks and contrast it with container tags like <p>, emphasizing the importance of closing tags to avoid errors.

  • Empty tags like <br> don’t need closing labels
  • Closing tags prevent rendering issues in complex pages

Clarifies a common source of confusion for beginners.

5:04-6:10

Case Sensitivity and Best Practices

watch

The instructor explains that HTML is case-insensitive but recommends lowercase for consistency. They demonstrate uppercase and lowercase tags working identically, then stress lowercase adherence to standards and readability. A resource link is provided for further learning.

  • HTML ignores uppercase/lowercase but lowercase is standard
  • Follow lowercase conventions for cleaner code

Reinforces coding standards and provides a resource for deeper learning.

6:10-6:10

Outro / Call to Action

skip

The instructor thanks viewers, invites subscriptions for future HTML tutorials, and signs off. No technical content is presented in this brief closing.

Purely promotional with no instructional value.

Key points

  • HTML Element Structure — HTML elements consist of opening and closing tags with content in between, such as <title> and </title>, which define the page's title in the browser tab.
  • Heading Hierarchy (H1-H6) — HTML headings range from H1 (largest) to H6 (smallest), allowing semantic organization of content with decreasing font sizes.
  • Empty vs. Container Tags — Empty tags like <br> perform actions without content, while container tags like <p> hold text or other elements between opening and closing labels.
  • Case Insensitivity in HTML — HTML does not differentiate between uppercase and lowercase tags, but the standard recommends lowercase for readability and consistency.
Better close all your labels. For example, if we delete this paragraph here and reload, we observe that our page continues to work without any problem, but in other versions in which we already have images, videos, links, some styles, it is not recommended to omit some closing labels so that our page can work without any problem. Instructor
The HTML standard recommends that all labels are handled in lowercase, in addition to the fact that the code is much better appreciated in lowercase. Instructor

AI-generated from the transcript. May contain errors.

0:00

Welcome to this new installment of the HTML course, in which we will learn to structure an HTML document in the initial form that you can create your own website, even from scratch. Today we will see the HTML elements and their function in order to understand the management that we can give it in general. We will not see all the HTML elements because they are clearly too many, but we will see the main elements that will serve us to be able to manage the rest of the elements.

0:25

Likewise, for today we are going to install a different text editor to be able to work in the previous session. We work with the Windows note block that works quite well. However, it is not so comfortable in sight that it does not render us from the labels that we are placing to install our text editor, which there are many. We are going to go to the browser and we are going to install Sublime Text. We click Sublime Text. We go to Sublime Text.com.

0:49

Sublime Text is basically a text editor of code that will serve us to program in multiple programming languages. And we click here where it says Download for Windows. Immediately the installer starts to download. We wait a few seconds. Already finished, we click on the executable and proceed to execute it as we would with any other program or any other installer on our computer. We click on Install and click Finish.

1:15

To open our index.html file, which is the file we are working on, which is our page that simply has a welcome and has a paragraph that says my first website, we go here to the folder where we have the page, we right click, we are going to open it with and we are going to tell it here where it says choose another application. There are no more applications and we look for its blind text here and we give it to accept. Immediately the editor will open with our HTML code.

1:41

to be able to modify it, to be able to work with it. The good thing about this editor is that, as I mentioned before, it brings us the possibility of identifying the labels. As we can see, each of the labels comes marked with a different color. What are these colors for? They serve to identify when I was wrong. I erase the symbol here to

1:58

close this label, I can see that the label below is not colored and in this way visually we can help our work be much more agile. The operation is the same, we are simply editing, for example, my first web page, I'm going to put it here B2 and we're going to save here. We can do it here where it says File Save. When we have a new version of our page, we simply reload and we will be able to see the modifications that we are adding to our

2:23

pages. Basically that is the management that we are going to continue to give with respect to our Sublime Text code editor. Ok, reinforcing what I saw in the previous video tutorial in which we created all that structure. How are the elements in HTML? The elements in the HTML language

2:39

They are based on labels, as we can see here. We have an opening label, in this case a label called Title and we have a closing label. We have a content and this whole set forms an element, an HTML element, which fulfills a functionality within our page. In this case, it fulfills the functionality of showing the title in the browser tab.

2:59

Also remembering that everything we place between the body labels and the body finalization label is what is going to be shown on the page. Everything we place here is what is going to be seen on our browser. As we can see here, we have an H1 label and with its respective closure and

3:15

In HTML we can have different variations for labels, such as the H1 label has variations from H1 to H6 and we can observe it here. We are going to put an H2 label here and we put the title here H2. We are going to save and refresh our page and as we can see it is a title, but it is much smaller than the H1. We then have the H3 variation, we are going to put it here.

3:39

title H3, we save and we are observing that the size is changing from a larger size to a smaller size as I increase H1, H2, H3. We have available up to H6. Let's look at them here. It would be title H4. We save and refresh. As we can see,

3:57

Each of the different H1, H2, H3, fulfill a function that is to show us a title with a corresponding size. Already we on our web pages we decided what title we can use according to the needs on our page.

4:11

Something important is that some HTML elements do not need closing labels and catalogs them as empty labels, given that no content is specified in them, but a concrete action is carried out. An example of an empty label is a BR label. Let's see the example with the BR label to

4:28

see what an empty label would be like. This BR label is used to make a line jump. For example, we could make another paragraph here, we could put here thanks for watching this video and we can put here subscribe and here we can put a BR label. The BR label is cataloged as an empty label, given that it does not have any content inside it, unlike the P label, which does have a content or a paragraph.

4:49

inside the label between the initial label and the final label. If we reload our page, we will see what it says here. Thanks for watching this video and below it says subscribe to this because the label is responsible for making a line jump on our HTML page.

5:04

HTML is an empty label. You can omit the labels at the end. Some HTML labels can work without the final label. However, not specifying the closing label can generate strange errors on the page. Better close all your labels. For example, if we delete this paragraph here and reload, we observe that our page continues to work without any problem, but in other versions in which we already have images, videos, links, some styles, it is not recommended to omit some closing labels so that our page can work without any problem.

5:33

Another aspect that we have to take into account in our HTML pages is that HTML as such does not distinguish between uppercase and lowercase. It is not sensitive to that if we put the labels in uppercase, for example, if we put the label here and this label we put it in uppercase and we save it, we will update our page, it will continue to work without any problem. If we click here to verify source code, we can observe that this label

5:53

This paragraph of line 7 is with a capital P and this paragraph of line 8 is with a P in lowercase and both work without any problem. However, the HTML standard recommends that all labels are handled in lowercase, in addition to the fact that the code is much better appreciated in lowercase.

6:10

Finally, in the description of the video I'm going to leave you a link where you can find a general list of HTML tags to implement on your pages with the description of its purpose and its functioning. We will continue in the HTML learning in a next installment and thus know in depth this language on which is written basically all of the Internet. If this video has been helpful for you, I invite you to subscribe so that you are aware of the new updates that I will be putting up soon. Until next time.

Continue with YouTLDR

Analyze another video with Pro

Process a new video, search every timestamp, compare sources, and keep the result in your library.

Get Pro — $12/month30-day money-back guarantee

More transcripts

Explore other videos transcribed with YouTLDR.