CIS111 University of Michigan Minor Web Application Project
Description
This is a CS project, only need to work question 2, 3, 4.
sumOfPDivs.html, sumOfPDivs.css and sumOfPDivs.js. This is an exercise in Client-SideJavaScript: you will need an .html file, a .ccs file, and a .js file. You’ll create a minor web application.A) In Atom create a file in your p5 folder named sumOfPDivs.html. It should be a minimal html page.You’ll find an example of a minimal html page under week 8 on Canvas. It shows what yoursumOfPDivs.html file should be.B) In Atom create a second file in your p5 folder named sumOfPDivs.css. You’ll find an example of thisfile under week 8 on Canvas. It can serve as your starting place for formatting/styling aspects ofyour web application. Be sure that there is a link to this file in your html.C) Create a third file called sumOfPDivs.js that will contain all the JavaScript code, and use a scriptelement in the html page to connect sumOfPDivs.html to sumOfPDivs.js.