-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form.html
36 lines (35 loc) · 1.29 KB
/
Form.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Form</title>
</head>
<body>
<h1 align = "center">Form Details</h1>
<hr>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="101">Your Name:</label>
<input type="text" name="Name" id = "101" placeholder="Enter your name">
<br><br>
<label for="102">Password:</label>
<input type="password" name="Pass" id = "102" placeholder="Enter your password">
<br><br>
<label for="103">Email:</label>
<input type="email" name="Email" id = "103" placeholder="Enter your Email" required>
<br><br>
<label for="104">Contact:</label>
<input type="number" name="Number" id = "104" placeholder="Enter your contact no">
<br><br>
<label for="105">Address:</label>
<textarea name="Address" rows="5" cols="80" placeholder="Enter your address"></textarea>
<br><br>
<label for="106">Please attach your resume:</label>
<input type="file" name="file" id = "106" placeholder="Enter your name">
<br><br>
<label for="107">Press:</label>
<input type="submit" name="" value="Submit">
</form>
<hr>
<a href="index.html">Home</a>
</body>
</html>