Lab 3
Complete the Github classroom assignment Opens in a new window. In Blackboard, submit a link to your repository.
This is an individual assignment, meaning you don't have to create branches or pull requests - you'll be working on your own code, and it won't interact or overwrite anyone else's code.
Whenever you commit a change, there are automated tests that I've created that will run to see if you've accomplished the requirements of this assignment.
Requirements
Change the code in the following files:
/public/form.css/public/index.html
There are code comments in both these files that will help you pass the tests that get executed when you push your code to Github.
To pass the CSS test, the CSS in /public/form.css must be re-written in BEM format, with the base element keeping the name .form.
To pass the JavaScript test, the code contained in the script element at the bottom of /public/index.html must be re-written to have a JavaScript class called Character. Then, you must rewrite the defaultCharacter and newCharacter objects so that they are instances of the Character class. Keep everything else the same.
/test/script.test.js. Feel free to read that file if it's going to help you understand what's required.