    <!doctype html>
    <html lang="en">
    <head>
      <meta charset="utf-8">
      <title></title>
    </head>
    <body>
    <!--
        //name
    //email
    //phone    
    //looking for dev/design/both (radio)
    //mobile dev design seo social media (checkbox)
    //best time to call (select)
    //comments (textarea)
    -->
    <form action="form.php" method="post">
    <label for = "fullname">Full Name Here:</label>
    <input type="text" id="fullname" placeholder="Full name"><br>
    <label for = "email">Email Here:</label>
    <input type="email" id="email" placeholder="Email "><br>
    <label for = "tel">Telephone Here:</label>
    <input type="tel" id="tel" placeholder="Telephone"><br>
    What are you looking for?<br>
        <label for = "dev">Developer</label><input type="radio" name = "service" value="developer" id="dev">
        <label for = "des">Designer</label><input type="radio" name = "service" value="designer" id="des"> 
        <label for = "both">Both</label><input type="radio" name = "service" value="both" id="both"> <br>
    Anything Specific?<br>
    <label for = "mobile">Mobile</label><input type="checkbox" name = "specific[]" value="mobile" id="mobile"> 
    <label for = "web">Web</label><input type="checkbox" name = "specific[]" value="web" id="web"> 
                            
        <label for = "seo">SEO</label><input type="checkbox" name = "specific[]" value="seo" id="seo"> 
                                    
        <label for = "social">Social</label><input type="checkbox" name = "specific[]" value="social" id="social"> <br>
        <p>Budget?</p>
        <select name= budget>
            <option value="5000">5000-10000</option> 
            <option value="20000">20000-50000</option> 
            <option value="50000">50000-100000</option> 
        </select><br>
        <p>Comments?</p>
        <textarea name="comments"></textarea><br>
        <button name="submit">Let's Work Together!</button>
    </form>    








    </body>
    </html>