-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact.html
27 lines (27 loc) · 1.07 KB
/
contact.html
1
2
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
<link rel="stylesheet" href="css/contact.css">
<div id="contact-form">
<h1>Get In Touch!</h1>
<h2>Give me a shout! I will reply to you shortly.</h2>
<form action="contact.php" method="post">
<label for="enquiry">Enquiry:</label>
<select id="enquiry" name="enquiry">
<option value="hire">I want to hire you</option>
<option value="price">I'd like to ask the price for a painting</option>
<option value="thank">I want to thank you</option>
</select>
<label>Name:
<input type="text" id="name" name="name" placeholder="Paul Cézanne" required autofocus>
</label>
<label>Email Address:
<input type="email" name="email" placeholder="[email protected]" required>
</label>
<label>Message:
<textarea name="message" required></textarea>
</label>
<input type="submit" id="submit" class="form-button" value="Send">
</form>
<div id="success">
<p id="text">Thanks for your message! Julemagne will get back to you ASAP!</p>
<img src="gfx/art/thumbs/what-would-rembrandt-do.png" alt="Julemagne">
</div>
</div>