构建主要 Web 浏览器列表
发布: (2026年1月19日 GMT+8 18:00)
2 min read
原文: Dev.to
Source: Dev.to
概述
在周末连续完成两套相当厚重的理论课程并撰写相关内容后,能够回到 freeCodeCamp 的工作坊实在是松了一口气。这个工作坊让我使用提供的 HTML 模板和描述列表元素,构建一个主要网页浏览器的列表。
HTML 模板
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>List of Browsers and Descriptions</title>
</head>
<body>
</body>
</html>
主要网页浏览器列表
<!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>
完成工作坊后,我继续学习了一些关于文本和时间语义元素的理论课程。我可能会在今天稍后把这些内容整理完,下一篇文章将是另一个工作坊,这次的主题是求职技巧页面。