-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact details.html
70 lines (59 loc) · 1.52 KB
/
Contact details.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Reach me out.</title>
</head>
<body>
<details open>
<summary>Details</summary>
<ul>
<p>Phone no- 7205799647 <br>
Address- Flat no.401, Shalini Apartment, Dennis Enclave, Aravind Nagar, Berhampur <br>
Email- amrutdash19@gmail.com <br>
</p>
</ul>
<br>
<hr>
<br>
<form class="" action="mailto:amrutdash19@gmail.com" method="post" enctype="text/plain">
<table>
<tr>
<td>
<label>Name(more than 4 characters):</label>
</td>
<td>
<input type="Name" name="" value="" minlength="4">
</td>
</tr>
<tr>
<td>
<label>Email:</label>
</td>
<td>
<input type="Email" name="" value="">
</td>
</tr>
<tr>
<td>
<label>Phone Number:</label>
</td>
<td>
<input type="Ph.no." name="" value="">
</td>
</tr>
<tr>
<td>
<label>Your idea</label>
</td>
<td>
<textarea name="name" rows="5" cols="50"></textarea>
</td>
</tr>
</table>
<br>
<input type="submit" size="10" >
</form>
</details>
</body>
</html>