diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2018-01-20 20:18:47 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-20 20:18:47 +0530 |
commit | 0d8bd65472d2167fe4e346ee2e0f0ca34aeef761 (patch) | |
tree | 7cf6f3d61d77a6d6886f09eb2d3f52fcd67f340b /Contact.html | |
parent | f1614a1e597a1ac53987a0466a41a14bf557e3d3 (diff) |
Add files via upload
Diffstat (limited to 'Contact.html')
-rw-r--r-- | Contact.html | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/Contact.html b/Contact.html new file mode 100644 index 0000000..8dc7e52 --- /dev/null +++ b/Contact.html @@ -0,0 +1,69 @@ +<!DOCTYPE html> +<html lang="en" > + +<head> + <meta charset="UTF-8"> + <title>Contact Me</title> + + + + <link rel="stylesheet" href="css/menu.css"> + <link rel="stylesheet" href="css/contact.css"> + + +</head> + +<body> + <!-- Menu by Captain Anonymous who forked it from Dmitry Kiselyov--> + <div id='cssmenu'> + <ul> + <li><a href='#'>Home</a></li> + <li class='active'><a href='#'>Projects</a> + <ul> + <li><a href='https://navanchauhan.github.io/Mjolnir'>Mjölnir</a> + + </li> + <li><a href='https://navanchauhan.github.io/Grub-Repair-Toolkit'>GYGB</a> + + </li> + </ul> + </li> + </li> + <li><a href='./Contact.html'>Contact</a></li> + </ul> + </div> + <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> + + + + <script src="js/menu.js"></script> + + <div class="container"> + <form id="contact" action="http://formspree.io/navanchauhan@gmail.com" method="post"> + <h3>Quick Contact</h3> + <h4>Contact me today, and get a reply within 24 hours!</h4> + <fieldset> + <input placeholder="Your name" type="text" tabindex="1" required autofocus> + </fieldset> + <fieldset> + <input placeholder="Your Email Address" type="email" tabindex="2" name="_replyto" required> + </fieldset> + <fieldset> + <input placeholder="Your Phone Number" type="tel" tabindex="3" required> + </fieldset> + <fieldset> + <textarea placeholder="Type your Message Here...." tabindex="5" required></textarea> + </fieldset> + <fieldset> + <button name="submit" type="submit" value="Send" id="contact-submit" data-submit="...Sending">Submit</button> + </fieldset> + </form> + + +</div> + + + +</body> + +</html> |