-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactMe.html
More file actions
43 lines (37 loc) · 1 KB
/
ContactMe.html
File metadata and controls
43 lines (37 loc) · 1 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Me</title>
</head>
<body>
<h1>Contact Me</h1>
<h4>Email:</h4>
<ul>
<li>tracy_cuiyating@hotmail.com</li>
<li>cui.yating@columbia.edu</li>
<li>cuiy@whitman.edu</li>
</ul>
<h4>Phone:</h4>
<p>(+1)509-593-9154</p>
<h4>Adress:</h4>
<p>280 Boyer Avenue, Walla Walla, WA, USA, 99362</p>
<form action="mailto:tracy_cuiyating@hotmail.com?subject=feedback"
method = "post"
encode = "text/plain">
<label>Your Name:</label>
<input type="text" name = "" value = "">
<br>
<br>
<label>Your Email:</label>
<input type="text" name = "" value = "">
<br>
<br>
<label>Your Message:</label>
<textarea name="name" rows="8" cols="80"></textarea>
<br>
<br>
<input type="submit" value = "Submit Your Message">
</form>
</body>
</html>