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

How to Add Images in HTML From a Folder

Have you seen any websites without images? Yes, we still might get a few, but they are rare these days. Let’s learn how you can add images to HTML documents....

May 31, 2021 · 3 min · Coderslang Master

How to Create an HTML File

The HTML files define the structure of a web page. Thus, to create a web page, the very first step is to write the HTML file for it. In this article, you will learn, how to create an HTML file from scratch....

May 29, 2021 · 3 min · Coderslang Master

What is the Difference Between HTML and CSS?

Both HTML and CSS are the key pillars of modern web development. Let’s learn what’s the main difference between the two. If you think of a human body, you will find, every one of us has a skeleton structure underneath flesh and skins....

May 28, 2021 · 2 min · Coderslang Master

How to Change the Color of the Text using CSS

To change the text color with CSS, you should use the color CSS property. The value for it can be provided using 3 main options: a name of the color — “red”, “green”, “blue” a HEX code that starts with the hashtag — “#00FF00”, “#121212” an RGB code that looks like this — “rgb(125, 20, 255)” Let’s use all three options to write CSS that changes the color of the headers h1, h2, and h3....

May 22, 2021 · 1 min · Coderslang Master

HTML Text Properties

HTML text has a couple of properties. When these properties change, the looks and feel of the website changes too. For example, here I’ve already told you how to change the color of the text in HTML....

March 11, 2021 · 4 min · Coderslang Master

HTML links and attributes

— Hey there! It looks like you’ve already figured out the basic HTML elements. — Well, I solved all practical tasks and realized that each tag has its own capabilities....

March 9, 2021 · 7 min · Coderslang Master

HTML Lists for beginners. Syntax and Styling.

— Let’s go ahead and explore new tags. — I thought we were already done with the tags. After all, we even studied the attributes. — Oh no, there are still a lot of HTML tags....

March 8, 2021 · 4 min · Coderslang Master

Beginners Guide into HTML Tables

An HTML table is an element comprised of table rows and columns, much like you’d see in an Excel spreadsheet. Tables are useful for displaying data in a tabular format, and they can be used for layout purposes as well....

November 6, 2022 · 5 min · Coderslang Master

External CSS stylesheet

CSS (Cascading Style Sheets) is a style sheet language used for describing the presentation of a document written in a markup language. A style sheet is a collection of rules that tells a web browser how to display a document written in HTML or XML....

November 6, 2022 · 4 min · Coderslang Master

Internal CSS stylesheet in the HTML document

— You already know how you can add styles to a specific element. For example, you know how to change the color of the text inside the <p> tag. But what if we need to do this for several tags of the same type?...

February 27, 2021 · 3 min · Coderslang Master