-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactme.html
48 lines (45 loc) · 1.18 KB
/
contactme.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Me</title>
</head>
<body>
<h1>Contact Me</h1>
<a href="https://www.linkedin.com/in/aileen-giang/">LinkedIn</a>
<br>
<hr>
<br>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label>Full Name:</label>
<input type="text" name="YourName" placeholder="John Doe">
<br>
<br>
<label>Your Email:</label>
<input type=email name="YourEmail" placeholder="[email protected]">
<br>
<br>
<label>Phone Number</label>
<input type="tel" name="YourNumber" maxlength=10 placeholder=(xxx)xxx-xxxx>
<br>
<br>
<label> Select your preferred contact method(s):</label>
<input type="Radio">
<label>Call</label>
<input type="radio">
<label>Text</label>
<input type="radio">
<label>Email</label>
<br>
<br>
<label> Sign up for monthly subscription?</label>
<input type="checkbox" checked>
<br>
<br>
<label> Your Message (max: 200 characters)</label>
<br>
<textarea name="YourMessage" rows="10" cols="50" maxlength="200"></textarea>
<input type="submit">
</form>
</body>
</html>