Home » CSS For SEO

Category: CSS For SEO

Post
Using IDs & CSS Classes – CSS

Using IDs & CSS Classes – CSS

Using IDs to Reference HTML Elements We can apply CSS styles to a particular HTML element by referencing it with some ID. We give IDs to HTML elements using attribute id. Let’s give h1 element some id. We can use this ID to give style to this particular element. Here is what our code will...

Post
More CSS Properties For Styling

More CSS Properties For Styling

It turns that there are a lot of CSS properties you can use to style elements. The point to is to look up for the particular property you need and not try to memorize all of them. In this guide, we will talk about important CSS properties only. To get started, let’s again create our...

Post
CSS – Introduction

CSS – Introduction

CSS Introduction. CSS stands for Cascading Style Sheets. CSS is used to add styling to the HTML. With CSS, we can add specify things like what text colour we want to use, what fonts to use, how the page should be designed, etc. If HTML is the skeleton of human body, then CSS is its...