29 lines
956 B
HTML
29 lines
956 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Contact Information</title>
|
|
</head>
|
|
<body>
|
|
<h3>My Contact Information</h3>
|
|
<P>Satan</P>
|
|
<p>Hell</p>
|
|
<p>ENROLMENT FOR THE CULT</p>
|
|
<form class="" action="mailto:robinshrma71@gmail.com" method="post" enctype="text/plain">
|
|
<label>Your Name</label>
|
|
<input type="text" name="YourName" value=""><br>
|
|
<label> Your Email</label>
|
|
<input type="email" name="YourEmail" value=""><br>
|
|
<label>Your Message</label><br>
|
|
<textarea name="YourMessage" rows="10" cols="30"></textarea><br>
|
|
<input type="submit" name="" value="submit">
|
|
<!--<label>Are you ready to take the risk?</label>
|
|
<input type="checkbox" name="" value=""><br>
|
|
<input type="file" name="Add File" value=""><br>
|
|
<input type="date"><br>
|
|
<input type="radio"><br>
|
|
<input type="range">-->
|
|
</form>
|
|
</body>
|
|
</html>
|