Build a List of Major Web Browsers

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

Source: Dev.to

Overview

After grinding through two sets of fairly heavy theory lessons over the weekend and writing about them, it was a relief to get back to a freeCodeCamp workshop. The workshop had me building a list of major web browsers using the provided HTML boilerplate and description list elements.

Boilerplate HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>List of Browsers and Descriptions</title>
</head>
<body>
</body>
</html>

Final List of Major Web Browsers

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>List of Browsers and Descriptions</title>
</head>
<body>
    <dl>
        <dt>Google Chrome</dt>
        <dd>This is a free web browser developed by Google and first released in 2008.</dd>

        <dt>Firefox</dt>
        <dd>This is a free web browser developed by the Mozilla Corporation and first created in 2004.</dd>

        <dt>Safari</dt>
        <dd>This browser was developed by Apple and is the default browser for iPhone, iPad and Mac devices.</dd>

        <dt>Brave</dt>
        <dd>This is a free web browser first released in 2016 that is based on the Chromium web browser.</dd>

        <dt>Arc</dt>
        <dd>This is a free Chromium‑based web browser first released in 2023 by The Browser Company.</dd>
    </dl>
</body>
</html>

After completing the workshop, I moved on to a few theory lessons surrounding text and time semantic elements. I’ll probably wrap those up later today, and the next post will be another workshop, this time for a Job Tips page.

Back to Blog

Related posts

Read more »

Build a Video Display Using iframe

Overview After completing a couple of theory lessons on working with the iframe element, I moved on to the Build a Video Display Using iframe workshop from fre...

Build an HTML Media Player

Build an HTML Video Player Over the course of the last couple of days I've completed another workshop and lab via freeCodeCamp. I undertook the Build an HTML V...

SSR vs SPA | Qual usar?

O objetivo deste artigo é guiá‑los na escolha da melhor tecnologia para sua aplicação. Quando iniciei minha carreira, comecei com JSF JavaServer Faces, um MPA M...

Fundamentals of react app

Introduction Today we’re going to look at the reasons and uses of the files and folders that are visible when creating a React app. !React app structurehttps:/...