-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
39 lines (36 loc) · 1.54 KB
/
contact.html
File metadata and controls
39 lines (36 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
</head>
<body>
<h1>My Contact Details</h1>
<p>My Address Is the 21112</p>
<p>Email: <a href="mailto:abc@gmail.com">abc@gmail.com</a></p>
<p>Mobile No: 1234657809</p>
<hr>
<form action="mailto:dehademayur9@gmail.com" method="post" enctype="multipart/form-data">
<fieldset>
<legend><h3>Enter Your Information For Contact Me</h3></legend>
<label for="fname">Enter Your Name:</label>
<input type="text" name="name" id="" placeholder="Enter Your Name" required>
<br><br>
<label for="email">Enter Your Email:</label>
<input type="email" name="gmail" id="" placeholder="Enter Your Email" required>
<br><br>
<label for="number">Enter Your Mobile Number:</label>
<input type="text" name="number" id="" maxlength="10" minlength="10" placeholder="Enter Your Mobile No" required>
<br><br>
<label for="discription">Enter Your Message Here:</label>
<br><br>
<textarea name="discription" id="" cols="60" rows="10" placeholder="Enter Your Message Here..."></textarea>
<br><br>
<input type="reset" value="Reset">
<input type="submit" value="Submit">
</fieldset>
</form>
</body>
</html>