-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact-me.html
More file actions
29 lines (29 loc) · 905 Bytes
/
contact-me.html
File metadata and controls
29 lines (29 loc) · 905 Bytes
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
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="style.css">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - me</title>
</head>
<body>
<h1>My Contact details</h1>
<p>fictional address</p>
<p>850363606</p>
<p>ihemanth.2001@gmail.com</p>
<hr>
<form action="mailto:ihemanth.2001@gmail.com" class="" method="POST" enctype="text/plain">
<label for="">Your name</label>
<input type="text" name="name">
<br>
<label for="email">Your email</label>
<input type="email" name="email" id="">
<br>
<label for="textarea">give ur message</label>
<br>
<textarea name="message" id="" cols="30" rows="5"></textarea>
<br>
<input type="submit" value="submit">
</form>
</body>
</html>