-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSubmission.html
More file actions
34 lines (30 loc) · 904 Bytes
/
Submission.html
File metadata and controls
34 lines (30 loc) · 904 Bytes
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
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact submission</title>
</head>
<body>
<h1>My Contact Info</h1>
<h2>availibility</h2>
<h3> monday - fridays 8Am - 7PM</h3>
<ul>
<li>Email: BryanJazo88@gmail.com</li>
<li>Phone Number: (909)709-1148</li>
<li>instagram:Bryan_887</li>
</ul>
<hr size="2" noshade>
<h3>For a call back submit these questions.</h3>
<form action="mailto:bryanjazo88@gmail.com" method="post" enctype="text/plain">
<label>Name: </label>
<input type="name" name="YourName" value=""><br>
<label>Email:</label>
<input type="email" name="YourEmail"><br>
<label>Text:</label>
<textarea name="YourMessage" rows="10" cols="30"></textarea><br>
<label>Do you agree to our terms?</label>
<input type="checkbox" name="" value="">
<input type="submit" name="">
</form>
</body>
</html>