Today we are going to see how to create quick enquiry form in website. This Concept very useful to you. Use this enquiry form on your website easy to access. See the demo video and download the coding. Below see the code,
Code for enquiry form:
<head>
<script src=”https://code.jquery.com/jquery-3.3.1.js”></script>
</head>
<body>
<div class=”sidebar-contact”>
<div class=”toggle”></div>
<h2>Contact Us</h2>
<div class=”scroll”>
<form>
<input type=”text” name=”” placeholder=”Name”>
<input type=”email” name=”” placeholder=”Email”>
<input type=”rel” name=”” placeholder=”Phone Number”>
<textarea placeholder=”Message here..”></textarea>
<input type=”submit” name=”” value=”send”>
</form>
</div>
</div>
</body>
