how to create table in html

Description:
It is simple and easy to create table in html. Just you need to use html tags to create html table in ypu website. Following below example to fulfill your requirement:

User also searching  how to send mail in php, how to use string function in php
   <table>
        <tr>
            <td>
                Name< /td >
                <td>
            <input type="text" name="username" >< /td >
        </tr>
        <tr>
            <td>
                Password< /td >
                <td>
            <input type="password" name="password" >< /td >
        </tr>
        <tr>
            <td>
                <input type="button" name="submit" value="submit">
            < /td >
        </tr>
    </table>

No comments:

Post a Comment