Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

Bài 14:

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bai14</title>
<style>
#abc {
display: table;
}

.s1 {
float: left;
margin-top: 80px;
}
</style>
</head>

<body>
<form action="">
<h1>Contact Us</h1>
<p>Use the following form to send a massage to Example Cafe</p>
<label for="">Your email</label>
<input type="text" size="20" maxlength="20" name="txtEmail" style="margin-
left: 90px; margin-bottom: 5px;"><br>
<div id="abc">
<label for="" class="s1">Massage</label>
<textarea name="txtmassage" id="" cols="50" rows="15" style="margin-
left: 108px;"></textarea>
</div>
<div style="clear: both;"></div>
<label for="">How did you hear of us?</label>
<select name="" id="" style="width:150px"><option>Google</option></select>
<br>
<label for="">Newletter</label>
<input type="checkbox" style="margin-left:95px;">
<label for="">Ensure this box is checked if you would like to receive email
updates</label><br>
<input type="button" value="Send massage">
</form>
</body>

</html>

</html>

You might also like