-
Andrej Rasevic authoredAndrej Rasevic authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Project1Description.md 1.01 KiB
Project 1: Build your first react application
Due Date: Thursday, January 10, 2019 8:00 PM
Objectives: To build your first react application without using any build tools and gain practice with our git workflow for distributiing course materials and submitting projects.
Specifications/Requirements
- Starting with the
main.html
starter file we have provided you with add the code to add a H1 element to theh1-container
, a H2 element to theh2-container
and a H3 element to theh3-container
element. - Additionally, provide css rules inside of the
style tag
element so that the same padding and back-ground color appears in all 3 containers but that the text inside of each container is a different size and color. You should only have 4 css rules inside of the style tag.
Note: You can use either pure javascript or JSX syntax to create your elements. Reagrdless of which style you choose to implement your components you only need the single script tag inside of the body element we provided you with.