-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest1.html
More file actions
47 lines (28 loc) · 1.19 KB
/
test1.html
File metadata and controls
47 lines (28 loc) · 1.19 KB
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
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="test1.css">
<title>Document</title>
</head>
<body>
<form class="" action="contactform.php" method="post">
<input type="text" name="email" placeholder="Write your email address">
<input type="text" name="email" value="Write your email address">
female: <input type="radio" name="gender" value="female" checked>
Male: <input type="radio" name="gender" value="Male">
Other: <input type="radio" name="gender" value="Other">
<input type="password" name="pwd" placeholder="password">
<textarea name="message" placeholder="Write a Message"></textarea>
<select name="car">
<option value="none" placeholder="Select">Select</option>
<option value="car1">Ford</option>
<option value="car2">Mercedes</option>
<option value="car3">Opel</option>
</select>
<button type="submit" name="submit">Submit</button>
</form>
</body>
</html>