Menu
Coddy logo textTech

Recap: Meet React

Part of the Fundamentals section of Coddy's React journey — lesson 5 of 42.

challenge icon

Challenge

Easy

Chapter recap: build a small page using everything from this chapter.

  1. Inside the wrapper <div>, add an <h1> with id="title" and the text My React Page.
  2. Below it, add a <p> with id="intro" and the text Built with components.
  3. Give that paragraph the CSS class lead, the JSX way.

Try it yourself

<!DOCTYPE html>
<html>
    <head>
        <link rel="stylesheet" href="styles.css" />
    </head>
    <body>
        <div id="root"></div>
        <script type="module" src="main.jsx"></script>
    </body>
</html>

All lessons in Fundamentals