Theory is often overlooked

Published: (January 4, 2026 at 05:00 AM EST)
1 min read
Source: Dev.to

Source: Dev.to

Theory Exercises in freeCodeCamp’s Responsive Web Design Certification

One of the many things that I really like about version 10 of the Responsive Web Design Certification on freeCodeCamp is the theory exercises. Ever since taking my first steps into web development some years ago, I’ve understood what things like UTF‑8 do but never looked deeply enough to understand the details. A useful theory lesson via freeCodeCamp made things crystal clear.

Even starting out, most of us quickly understand the advantages of boilerplate code, particularly in regard to web design. Another lesson from yesterday gave me a great boilerplate example, as shown below:

Boilerplate Example

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>freeCodeCamp</title>
</head>
<body>
</body>
</html>

Next Steps

I finished yesterday as I will start my lessons today, building a Cat Photo App. I was pleased to see these series of exercises still in the curriculum, as I think they serve as an ideal yet fun introduction to web development.

Back to Blog

Related posts

Read more »

Learning with freeCodeCamp

So the New Year brought some changes and, hopefully, commitments. I joined the DEV Community and also created a new account on freeCodeCamp, starting with versi...

Bad CSS-Dad Jokes (VI)

Jokes - Why are developers impressed with Tailwind? One semantic class is worth one thousand utility classes. - Why was the web developer afraid of accordions?...

JavaScript DOM Explained for Beginners

What is DOM? DOM stands for Document Object Model. It is a tree‑like representation of your HTML document that JavaScript can: - read - change - add to - remov...