-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact_me.html
37 lines (37 loc) · 1021 Bytes
/
contact_me.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>contact</title>
</head>
<body bgcolor="cyan">
<h2>CONTACT INFO :</h2>
<p>
<h3><u>Mobile Number</u></h3>
9911******
<h3><u>EMAIL</u></h3>
<h3><u>CONTACT HARSHITA USING BELOW CREDENTIALS:</u></h3>
</p>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<table>
<tr>
<td><label>YOUR NAME: </label></td>
<td><input type="text" name="yourName"><br></td>
</tr>
<tr>
<td><label>Email:</label></td>
<td><input type="email" name="yourEmail"><br></td>
</tr>
<tr>
<td><label>Your Message:</label></td>
<td><textarea name="yourMessage"rows="10" cols="30">hello! Glad to read your resume </textarea><br></td>
</tr>
<tr>
<td></td>
<td><input type="submit" ></td>
</tr>
</table>
</form>
</body>
</html>