I have 2 separate forms in HTML and want to send them via a single button. How can I do that? When I try to make them into one form by removing the start and end in the middle, the div tags and CSS messes up. Here is my code.
            <div class="contact-bottom"> 
            <div class="col-md-6 contact-left"> 
            <form>
                <input type="text" placeholder="Name" required="">
                <input type="text" placeholder="E-mail" required="">
                <input type="text" placeholder="Phone" required="">
            </form>
            </div>
            <div class="col-md-6 contact-left">
            <form>
                <textarea placeholder="Message"></textarea>
                <input type="submit" value="SEND">
            </form> 
            </div>
            <div class="clearfix"> </div>
        </div>
 
    