In web development, the rendering of HTML for consumption by the browser is one of the first skills that is acquired by savvy software engineers. You may not realize it, but the vast majority of pages that you see on the web areto rendered programmatically, meaning the HTML is determined by a list of dynamic objects stored in a database somewhere. To this end, it is important to know how to do basic string replacement in order to produce the bits of HTML needed to be rendered onto our webpages.
In this assignment, you will be taking a simple "Person" object defined below and using it to render out a basic user profile for that object. This does not have to be flashy and does not even have to render into a webpage. A simple "print" to your terminal or console from your programming language of choice of the final HTML will suffice. You can use whatever language that you are familiar with to write this code. The implementation is entirely up to you. You may choose to write just a single f