I was looking for help with the following problem; draw a line between two points, along that line place points on it at various % (i.e. place a point every 15% of the line length). place text next to each point with the % value.
Take a look at the references; line() and point() come to mind and also for().
Once you have worked through some of the examples consider how you would plot a point at 15% along the line; that can be simplified to 15% along x and 15% along y from the starting point.
Think about how you would do this on a piece of graph paper and translate that to code.
Once you have made a sincere effort ask for help.
This is very achievable for a beginner (assumed) and a great exercise; I worked through this and encourage you to as well.