| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 
 | <form method="" action="javascript:sendMail()" method="post">
    <table border="0" cellspacing="1">
        <tr>
            <td width="150"><p>Nom / Raison Social :<span style="color:red">*</span></p></td>
            <td width="395">
                <input type="text" id="nom" size="59" style="background-color: #A9E2F3; color: rgb(255,255,255);font-weight: bold;"></td>
        </tr>
		<tr>
            <td width="150"><p>Courriel :<span style="color:red">*</span></p></td>
            <td width="395">
                <input type="text" id="courriel" size="59" style="background-color: #A9E2F3; color: rgb(255,255,255);font-weight: bold;"></td>
        </tr>
		<tr>
            <td width="150"><p>Télephone : </p></td>
            <td width="395">
                <input type="text" id="telephone" size="59" style="background-color: #A9E2F3; color: rgb(255,255,255);font-weight: bold;"></td>
        </tr>
        <tr>
            <td width="150"><p>Sujet :<span style="color:red">*</p></td>
            <td width="395">
                <input type="text" id="edSubject" size="59" style="background-color: #A9E2F3; color: rgb(255,255,255);font-weight: bold;"></td>
        </tr>
        <tr>
            <td width="150"><p>Message :<span style="color:red">*</p></td>
            <td width="395">
                <textarea rows="20" id="edBody" cols="55" style="background-color: #A9E2F3; color: rgb(255,255,255);font-weight: bold;overflow: hidden;"></textarea></td>
        </tr>
    </table>
    <br>
    <input type="submit" value="Envoyer" >
</form> | 
Partager