CS 203 Project 1 Due date: Before July 4th. NOTE: Before working on your project, turn in your Class diagram either to me or to Tarik. Remeber that this will count as 10% of your project grade. Also, email or turn in your java source codes. I do not need anything else. * Based on the contents of the Orders.csv file, write a java class (Call it Orders) to sum the values of the "Freight" column as follow: - Sum up these values according to the month in 1997. (up to 2 decimal accuracy) - There should be 12 values altogether (12 months in 1997) - At the end, display the Grand Total of these twelve months. (add all the sum up) - Write a method to find which month has the most sales. (call it MonMax()) - Write a method to find which month has the least sales. (call it MonMin()) Create another class call HTMLForm to: - Output the above results in an html format. (look at the examples on my web site) - Try to create a nice html output. The better the output the higher the score. You should have at least three files: one java file contains the main() method (your driver) and two java class files contain your classes.