Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<html>
<head>
<title>Programming Appointment</title>
<!-- define some style elements-->
<style>
h1
{
font-family : Arial, Helvetica, sans-serif;
font-size : 16px;
font-weight : bold;
}
label,a
{
font-family : Arial, Helvetica, sans-serif;
font-size : 12px;
}
</style>
</head>
</head>
<body>
<h1>Book a Programming Appointment </h1>
<form method="POST" name="contactform" action="contact-form-thank-you.handler">
<p>
<label for='name'>Your Name:</label> <br>
<input type="text" name="name">
</p>
<p>
<label for='email'>Email Address:</label> <br>
<input type="text" name="email"> <br>
</p>
<p>
<label for='Tiimeslot'>Time Slot:</label>
<select name="timeslot">
<option value="10-12">10-12pm</option>
<option value="12-2">12-2pm</option>
<option value="2-4">2-4pm</option>
<option value="4-6">4-6pm</option>
</select>
</p>
<p>
<label for='message'>Message:</label> <br>
<textarea name="message"></textarea>
</p>
<input type="submit" value="Submit"><br>
</form>
</script>
<!--
</body>
</html>