let x=>.map()<div>color: teal____________
Theebug — Learn to Code by Doing
Start Learning
docs.md
THEEBUGdocs.md

HTML Reference

Structure the web with tags, attributes, and semantic elements.

/** Headings & Paragraphs */

<h1>-<h6> for headings, <p> for paragraphs.

Example
<h1>Welcome</h1>
<p>This is a paragraph.</p>

/** Images */

src points to the image file, alt is fallback/accessibility text.

Example
<img src="worm.png" alt="Debug the worm" />

/** Lists */

<ul> for bullet lists, <li> for each item.

Example
<ul>
  <li>Apples</li>
  <li>Bananas</li>
</ul>

/** Divs & Classes */

<div> groups content; class="..." gives it a name CSS can target.

Example
<div class="card">Hello!</div>
main
Markdown