-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact-me.html
27 lines (26 loc) · 960 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
<!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" />
<link rel="stylesheet" href="style.css">
<title>Contact Me</title>
</head>
<body>
<h1>My Contact Details</h1>
<p>My Fictional Address</p>
<p>7796743579</p>
<p>Shreayshkakde69@gmail.com</p>
<form action="mailto:shreyashkakde9764@gmail.com" method="post" enctype="text/plain">
<label for="f_name"><b>Your Name:</b></label>
<input type="text" name="Full name"/>
<br/><br/>
<label for="email"><b>Your Email:</b></label>
<input type="email" name="Email">
<br/><br/>
<label for="comment">Enter your message</label><br><br>
<textarea name="Users message" id="comment" cols="30" rows="10"></textarea><br>
<input type="submit" name="submit" id="submit">
</body>
</html>