HTML Templates

    This is the following template we will be using. It should be placed in a
    file in the directory your program is run from:

    1. <html>
    2. </html>
    1. In the example we parse the files on every request, which can be a lot of performance overhead. Experiment with parsing the files at the beginning of your program and executing them in your http.Handler (hint: make use of the Copy() method on ).
    2. Experiment with parsing and using multiple templates.