When to use id or class in HTML

If you read my recent article on “What is a class HTML?” you may have wondered when to use “id” or class in HTML. This article will unpack that answer and give you a few guidelines when using ids in HTML. Attributes are added to elements in an HTML document to facilitate styling through CSS […]
Should I Learn CSS in 2022

CSS stands for Cascading Style Sheets and standard method for styling web pages. CSS specifies how HTML components should appear on a screen. Web browsers read HTML files that normally link to a CSS file to render web pages. We cover this in our article on connecting an HTML file to a CSS file. CSS […]
Lists in HTML with Examples

In HTML, you can display lists of information in multiple manners. You can display it as an ordered, unordered or description list. The two most commonly used lists types are ordered and unordered lists, but we will also cover description lists, as they can be extremely useful. Lists in HTML are made up of two […]