-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact-me.html
40 lines (40 loc) · 1.61 KB
/
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
38
39
40
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Me</title>
</head>
<body>
<h1>My Contact Details </h1>
<p>You can connect with me through :</p>
<p>My gmail : [email protected]</p>
<p>My outlook : [email protected]</p>
<p>My instagram : _md_saif_king_65_</p>
<p>My facebook : Mohammed Saif Akkiwat</p>
<hr>
<form action="mailto:[email protected]" method="get">
<label>Your Name</label>
<input type="text" name="yourName" placeholder="yourname"><br>
<label>Your Email</label>
<input type="email" name="yourEmail" placeholder="[email protected]"><br>
<label>Your Message</label><br>
<textarea name="yourMessage" rows="10" cols="30" placeholder="Type something... eg:Your website is cool!"></textarea><br>
<button type="reset">Reset</button>
<button type="submit">Submit</button>
</form>
<!--<form class="" action="index.html" method="post">
<label>Your Name : </label>
<input type="color" name="" value="">
<input type="text" name="" value=""><br>
<label>Your mobile number : </label>
<input type="number" name="" value=""><br>
<label>Your e-mail address : </label>
<input type="email" name="" value=""><br>
<label>Set Password : </label>
<input type="password" name="" value=""><br>
<label>Do you agree to the terms and conditions?</label>
<input type="checkbox" name="" value=""><br>
<input type="submit" name="">
</form>-->
</body>
</html>