-
Notifications
You must be signed in to change notification settings - Fork 0
/
another.html
44 lines (39 loc) · 1.63 KB
/
another.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
37
38
39
40
41
42
43
44
<!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>another world</title>
</head>
<body>
<center>welcome to my world</center><br>
<center>im lumy </center><br>
<center>
<form action="mailto:chandanabadugu2019@gmail.com">
<!-- using mailto we can directly mail to that mail address -->
<!-- here in action as soon as you click submmit it takes you to card.html -->
<label for="">your name</label>
<input type="text"><br>
<label for="">click here to submit</label>
<input type="submit"><br>
<label for="">choose your fav colour</label>
<input type="color"><br>
<label for="">are you girl </label>
<input type="checkbox"><br>
<!-- password input -->
<label for="">type password</label>
<input type="password"><br>
<label for="">file</label>
<input type="file"><br>
<label for="">range plz</label>
<input type="range" name="" id=""><br>
<input type="text" name="your text msg">
<!-- here in name="" the writen text will apper on mail which we have passed in form action attribute-->
<!-- text are where we can actually type our text -->
<label for="">type your msg darling</label>
<textarea name="kukkaS" id="" cols="30" rows="3"></textarea>
</form>
</center>
</body>
</html>