30 lines
997 B
HTML
30 lines
997 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Get In Touch With Arthur</title>
|
|
</head>
|
|
<body>
|
|
<h1>My Contact Information:</h1>
|
|
<p>You can use the information below to give me a shout - looking forward to hearing from you:</p>
|
|
<br>
|
|
<ol type="i">
|
|
<li>Email: arthur[at]arthurmukembo.com</li>
|
|
<li>Phone: +256 776 444 226</li>
|
|
<li>Office: Acacia Place, Acacia Avenue, Kololo</li>
|
|
</ol>
|
|
|
|
<form action="mailto:arthur@arthurmukembo.com" method="post" enctype="text/plain">
|
|
<label>Your Name:</label><br>
|
|
<input type="text" name="Your Name" value=""><br>
|
|
<label>Your Email:</label><br>
|
|
<input type="email" name="Email"><br>
|
|
<label>Your Message:</label><br>
|
|
<textarea name="message" rows="10" cols="80"></textarea><br>
|
|
<label>Choose a Password:</label><br>
|
|
<input type="password"><br>
|
|
<input type="submit">
|
|
|
|
</form>
|
|
</body>
|
|
</html>
|