Front End Development Libraries Projects - Build a Random Quote Machine

Tell us what’s happening:

I’m unsure how to link the CDN. I know there’s an option to just use the CodePen but I would like to use VSCode.

Your code so far:

<!DOCTYPE html>
<html>
    <head>
        <title>David's Random Quote Machine</title>
        <meta charset="UTF-8"/>
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <link href="styles.css" rel="stylesheet" />
    </head>
    <body>
        <div></div>

        <script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
    </body>
</html>

I already made the boilerplate HTML, I think I almost got the CDN link but then how do I link my script.js file if I’m already using a script file. Can I add another script element under the script element and add my script.js file?

Yeah you can have two script tags.