-
Notifications
You must be signed in to change notification settings - Fork 20
/
text-form
79 lines (75 loc) · 1.54 KB
/
text-form
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<html>
<head>
<style>
h3 { text-align:center;
color:yellow;
}
h1{text-align:center;}
div{height:50px;
width:6px;
background:white;
position:relative;
animation :mymove 3s infinite;
}
@keyframes mymove{
form{right:200px;}
to{left:300px;}
}
button {background-color:orange;
}
c1,c2,c3,c4,c5,c6{text-align:center;}
a1{border:5px;
text-size:100px;}
Name{align-:centre;
}
</style>
</head>
<form action="/action_page.php">
<body bgcolor ="red">
<fieldset>
<header>
<div></div><h1>Order On Online</h1>
</header>
Your
Name:<input type style="text-align:center ;" ="text" placeholder="enter name"
>
<br></br>
Age:<input type="text" placeholder=" enter age" name="a1">
<br></br>
Date:<input type ="date">
<br></br>
Address:<input type ="textarea" placeholder="enter Your address">
<br></br>
Gender:<input type="radio" name="r1">male
<input type="radio" name="r1">female
<br></br>
<hr>
<p>
<h3>select your order</h3>
</p>
<input type="checkbox" name value="c1">pizza
<br></br>
<input type="checkbox" name value="c2">burger
<br></br>
<input type="checkbox" name value="c3">sandwich</br>
</br>
<input type="checkbox" name
value="c4">Manchurian
<br></br>
<input type ="checkbox" name value="c5">thosa
<br></br>
<input type ="checkbox"oninvalid="c6">
Pavbhaji
<br></br>
<button>
<a href="//https/www.zomato.com/search">Order
</a>
</button>
.
<button style="right:20px;">
Clear
</button>
</fieldset>
</form>
</body>
</html