-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (25 loc) · 1.11 KB
/
index.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
<!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>form_project simple</title>
<link rel="stylesheet" href="form_project.css">
<link rel="icon" href="https://th.bing.com/th/id/OIP.QiTMikgITrX3wz4wgK1RGgHaEA?pid=ImgDet&rs=1">
<body>
<center>
<form action="mailto:krishnavetapalem2019@gmail.com" method="post" enctype="text/plain">
<label for="fname">first name:</label>
<input type="text" id="fname" name="fname" value="por"><br>
<label for="lname">last name :</label>
<input type="text" id="lname" name="lname" value="por"><br>
<label for="email" >email :</label>
<input type="email" id="email" name="mailid" placeholder='mail id '><br>
<label class="iui" for="area">feedback:</label><br>
<textarea name="feedback" rows="10" cols="20" spellcheck="true"></textarea>
<br><input type="submit">
</form>
</center>
</body>
</html>