-
Notifications
You must be signed in to change notification settings - Fork 0
/
conntect.html
63 lines (52 loc) · 2.12 KB
/
conntect.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
<!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>My contact detail</title>
</head>
<body>
<h2>Contact Me</h2>
<ul>
<li><strong>Phone No.</strong> 8854625631</li>
<li><strong>Email</strong> [email protected]</li>
<li><strong><Address></Address></strong> xyz street, house no. 281 UP india</li>
</ul>
<hr noshade="3">
<h3>wanna message me!</h3>
<p>FILL THIS FORM</p>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="name">Name: </label>
<input type="text" name="YourName" id="">
<br>
<label for="email">Email: </label>
<input type="email" name="YourEmail" id="">
<br>
<label for="message">Message: </label><br>
<textarea name="Your message" id="" cols="30" rows="10"></textarea>
<input type="submit" name="" id="">
</form>
</body>
</html>
<!--<input type="text" name="name" id="name"><br>
<input type="submit" name="" id=""><br>
<input type="color"><br>
<input type="checkbox" name="" id=""><br>
<input type="radio"><br>
<input type="button" value="RAM"><br>
<input type="datetime"><br>
<input type="datetime-local"><br>
<input type="email" name="" id=""><br>
<input type="file" name="" id=""><br>
<input type="hidden" name="hello"><br>
<input type="image" src="images/saurabhdubey839.jpg" alt=""><br>
<input type="password" name="" id=""><br>
<input type="month" name="" id=""><br>
<input type="number" name="" id=""><br>
<input type="range" name="" id=""><br>
<input type="tel" name="" id=""><br>
<input type="week" name="" id=""><br>
<input type="time" name="" id=""><br>
<input type="reset" value=""><br>
<input type="search" name="" id=""><br>-->