This project demonstrate a basic golang server creation. Parsing and Routing between mutiple static pages using Golang's core package(net/http).
http.ListenAndServe(":PORT",nil)
http.HandleFunc("/path",routeHandlerFunctionName)
template.ParseFiles("/dir/path/file.html")
template.ParseGlob("/dir/path/*.html)
Execute(responseWriter, nil)
ExecuteTemplate(responseWriter,"index.html","pass vale to static page")