Before writing code, create a set of diagrams, sketches, or low-fidelity wireframes to visualize your project's layout.
These wireframes should include all the required HTML elements.
If possible, share and talk through ideas with someone else!
Use these wireframes to guide the rest of your project.
We recommend you get started by writing the HTML in index.html
.
You will need to link:
index.css
index.js
https://unpkg.com/axios/dist/axios.min.js
- This project will require you to select a lot of elements. Creating logical, well-organized HTML structures in the beginning will help you later on.
- Create as many
id
s as you need. Sometimes, it's more effective to select by ID, compared to selecting by class, element, or relationship. - To get a little more error reporting help from the browser, we can request strict behavior. To turn this behavior on, add the literal string
"use strict";
to the top of yourindex.js
file.