馃殌 CYBER WEEK SALE: 50% OFF on JavaScript Fundamentals 馃挭

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鈥檚 a sample HTML table that we are going to use for this guide:...

July 30, 2021 路 2 min 路 Coderslang Master

What is `<tr>` in HTML

tr which stands for Table Row is an HTML element tag and is used to define a row of cells in a table. You use tr whenever you want to create a table on an HTML page....

July 8, 2021 路 2 min 路 Coderslang Master

What is the right place for the analytics code in the HTML

In this beginner tutorial you鈥檒l learn how to properly add the analytics code to your website. When you want to add the analytics tracking code for data collection, you place the code inside the header of the website which is the head tag....

May 7, 2022 路 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 link an image in HTML

You need to use the HTML image element with an HTML hyperlink element to create an image link. The HTML element <img> displays an image. The HTML element <a> creates a hyperlink....

June 24, 2021 路 2 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

How to center a button in HTML

There exist many ways to center a button on a web page. Here are few easy ways you can learn and master in less time. You can center align the texts in the parent container....

June 21, 2021 路 3 min 路 Coderslang Master

What is <br> in HTML and how to use it

Often you want to display texts with frequent line breaks, such as addresses, poems, etc on websites. The HTML element <br> provides an easy way to break lines on web pages....

June 18, 2021 路 2 min 路 Coderslang Master

Which CSS property is used to make the text italic

You can italicize a text using the CSS property, font-style. This property sets the texts to other styles too such as normal and oblique. The default value for the CSS property, font-style is normal for every text....

June 17, 2021 路 1 min 路 Coderslang Master

Which HTML attribute is used to define inline styles

The HTML style attribute allows you to add inline CSS styles to your HTML tags. A coding sample This example makes use of the HTML style attribute for the following style changes:...

June 16, 2021 路 1 min 路 Coderslang Master