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

How Long Does It Take to Learn CSS

CSS is the key element of the modern web development. You absolutely must learn it to become a Frontend dev. It will take about 2-3 weeks to learn CSS and 1-2 months of practice to be good at it....

May 7, 2022 · 3 min · Coderslang Master

How to Remove Underlines From Links in CSS

You know how hyperlinks always come with an underline, right? And you want to get rid of it so you can add your style. Well, you can do it by using the text-decoration property....

September 20, 2021 · 1 min · Coderslang Master

How to move text in HTML

To move your text in HTML, you will need to use the text-align property. Text-align is a CSS property that will align the HTML text to the left, right or center of the web page....

September 3, 2021 · 1 min · Coderslang Master

What does > mean in CSS

When used in a CSS selector, the greater than symbol (>) represents the direct child relationship between two elements. The greater than “>” sign in CSS means selecting the HTML elements that are the first direct descendant of the parent element but ignore the second, third, and other descendants....

November 6, 2022 · 2 min · Coderslang Master

Where in an HTML document is the correct place to refer to an external style sheet

The correct place to refer to the external style sheet in an HTML document is inside the head section. The head section locates at the topmost part of the HTML document, and it’s where you add the external style sheet code to access the CSS file from which you can use it to apply the stylings to an HTML web page....

August 4, 2021 · 1 min · Coderslang Master

How to use div tag in HTML to divide the page

Learn how to divide the page in HTML using the div tag in 3 easy steps. Step 1: Add the div tags Let’s say you want to divide the page into three sections....

August 3, 2021 · 2 min · Coderslang Master

How to put text next to an image in HTML

Sometimes, you want to put text next to the image to display the information like a profile picture of the social media or service platform, a company’s team members, and many more....

August 2, 2021 · 3 min · Coderslang Master

How to center a table in HTML

In this short article, you will learn how to center a table in HTML. You will use the style attribute to make the table move to the center. Here’s a sample HTML table that we are going to use for this guide:...

July 30, 2021 · 2 min · Coderslang Master

How Long it Takes to Learn JavaScript

One of the most common questions beginner programmers ask is how long it takes to learn JavaScript. You want to know how long it will take you before you start building JavaScript projects and get a job in software development....

December 16, 2021 · 8 min · Coderslang Master

How to rotate an image in HTML

The CSS transform property can rotate an image by a specified angle. A positive angle creates a clockwise rotation. A negative value creates an anti-clockwise rotation. There exist two types of rotations, the 2D and 3D rotations....

June 22, 2021 · 3 min · Coderslang Master