

Contact 02
----------
Html contact form

--- Visit devspot ---
https://devspot.ca


--- files ---
root
  |
  |--> src
  |     |--> markup.html
  |     |--> script.js
  |     |--> style.css
  |
  |--> readme.txt


--- Usage ---
--> Copy the html markup in your project.

--> Insert both the CSS and JS files in your project
    <link rel="stylesheet" href="path_to_css_file">
    <script src="path_to_js_file"></script>

--> To handle sending the message, the "send_message" call back has to be defined.
    the function takes an object as parameter, see the function prototype below:
    function send_message(data)
    data = {
        name:value,
        email:value,
        subject:value,
        message:value
    }


