🚀 CYBER WEEK SALE: 50% OFF on JavaScript Fundamentals 💪

HTML document structure

In the previous lectures, you learned about the most common HTML tags. It’s hard to imagine a web page without headings, paragraphs, links, lists, and tables. Today, I’m going to tell you about tags that are not so obvious....

February 25, 2021 · 3 min · Coderslang Master

Nested HTML tags

In HTML, you can nest not only inline tags but also almost any other combination of tags. For example, you can easily create a <div> tag to merge two paragraphs:...

August 21, 2022 · 1 min · Coderslang Master

Inline HTML tags

Inline HTML tags are those tags which are used to format the content within a web page without affecting the layout of the page. These tags are mostly used to apply formatting on text, but can also be used on other elements like images and tables....

November 6, 2022 · 2 min · Coderslang Master

Introduction to HTML for beginners

What is HTML after all? HTML stands for HyperText Markup Language. HTML is responsible for the structure and content of a page, and tags are the building blocks for building a page....

February 22, 2021 · 4 min · Coderslang Master

HTML, how to add a comment

To add a comment into an HTML document, there’s a special tag <!-- comment -->. There are times when you need to add comments to an HTML page. Comments are text that will be visible to your colleagues, but not visible to users who browse your website....

February 18, 2021 · 2 min · Coderslang Master

HTML, insert an image into the page

To insert an image into the HTML document, you can use the tag <image>. This HTML tag has 2 key attributes: src — defines the path to the image file alt — sets the alternative text....

February 16, 2021 · 2 min · Coderslang Master