Get started with CSS in 5 minutes

Written by Per Harald Borgen.

A beginners guide to the design language of the web

CSS (Cascading Style Sheets) is what makes web pages look good and presentable. It’s an essential part of modern web development, and a must-have skill for any web designer and developer.

In this article, I’ll give you a quick introduction to help you getting started with CSS.

Note: we’re also working on a free full-length CSS course on Scrimba. Leave your email here if you want early access once we launch it.

I’m assuming that you have a basic understanding of HTML, but other than that there are no prerequisites for this tutorial.

Getting Started

Let’s start with learning how we can include CSS in our projects. There are typically three ways we do that.

1. Inline CSS

First off, we can include CSS directly in our HTML elements. For this, we make use of the style attribute and then we provide properties to it.

<h1 style="color: blue"> Hello world! </h1>

Here we’re giving it the property of color, and setting the value to blue, which results in the following:

We can also set multiple properties inside the style tag if we wanted. However, I don’t want to continue down this path, as things start to get messey if our HTML is cluttered with lots of CSS inside it.

This is why the second method to include CSS was introduced.

2. Internal CSS

The other way to include CSS is using the styleelement in the head section of the HTML document. This is called internal styling.

<head>
<style>
h1 {
color: blue;
}
</style>
</head>

In the style element, we can give the styling to our HTML elements by selecting the element(s) and provide styling attributes. Just like we applied thecolorproperty to the h1 element above.

3. External CSS

The third and most recommended way to include CSS is using an external stylesheet. We create a stylesheet with a .css extension and include its link in the HTML document, like this:

<head>
<link rel="stylesheet" href="style.css">
</head>

In the code above, we have included the link of style.css file using the linkelement. We then write all of our CSS in a separate stylesheet called style.css so that it’s easily manageable.

//style.css
h1 {
color: blue;
}

This stylesheet can also be imported into other HTML files, so this is great for reusability.

CSS Selectors

As we discussed earlier, CSS is a design language which is used to style HTML elements. And in order to style elements, you first have to select them. You’ve already seen a glimpse of how this works, but let’s dive a bit deeper into CSS selectors, and look at three different ways you can select HTML elements.

1. Element

The first way to select an HTML element is by simply using the name, which is what we did above. Let’s see how it works:

h1 {
font-size: 20px;
}
p {
color: green;
}
div {
margin: 10px;
}

The example above is almost self-explanatory. We are selecting different elements like h1, p, div and giving them different style attributes. The font-size controls the size of the text, color sets the text color, and margin adds spacing around the element.

2. Class

Another way of selecting HTML elements is by using the class attribute. In HTML, we can assign different classes to our elements. Each element can have multiple classes, and each class can also be applied to multiple elements as well.

Let’s see it in action:

<div class='container'>
<h1> This is heading </h1>
</div>
...
.container {
margin: 10px;
}

In the code above, we have assigned the class of container to the div element. In the stylesheet, we select our class using .className format and giving it a 10px margin.

3. ID

Like classes, we can also use IDs to select HTML elements and apply styling to them. The only difference between class and ID is that one ID can be assigned to only one HTML element.

<div>
<p id='para1'> This is a paragraph </p>
</div>
...
#para1 {
color: green;
font-size: 16px;
}

The example above displays how we assign an ID to the paragraph element and later use the ID selector in the stylesheet to select the paragraph and apply the style to it.

Fonts & Colors

CSS provides us with literally hundreds of options for playing around with fonts and colors and making our HTML elements look pretty. We can choose from two types of font family names:

1. Generic Family: a group of font families with a similar look (like ‘Serif’ or ‘Monospace’)

2. Font Family: a specific font family (like ‘Times New Roman’ or ‘Arial’)

For colors, we can use predefined color names, or RGB, HEX, HSL, RGBA, HSLA values.

<div class='container'>
<h1 class='heading1'>
CSS is Coooooool!!!!
</h1>
</div>
.............
.container {
width: 500px;
height: 100px;
background-color: lightcyan;
text-align: center;
}
.heading1 {
font-family: 'Courier New';
color: tomato;
}

As you can see in the above example, we have a div element with the class of container . Inside this div, there is an h1 tag with some text inside it.

In the stylesheet, we select the container class and set its width, height, background-color, and text-align.

Finally we select the .heading1 class — which is applied to the h1 tag — and give it the attributes of font-family and color.

Conclusion

You might feel a bit overwhelmed by all this information, but don’t worry. In our upcoming course you’ll be guided through it by our eminent teacher Eric Tirado.

Leave your email here and we’ll give you early access to the course once it’s ready!

In this article, we just touched based on very basic topics. There are a lot of different topics and features of CSS which need a lot more time to explore and learn.


Get started with CSS in 5 minutes was originally published in freeCodeCamp on Medium.