Build a List of Major Web Browsers
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.