-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdonate.html
More file actions
73 lines (63 loc) · 1.54 KB
/
donate.html
File metadata and controls
73 lines (63 loc) · 1.54 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
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
<html>
<head>
<style>
.main{
background-image:url('https://gucec.com/wp-content/uploads/2018/10/shutterstock_67513879-800x450.jpg');
height:100%;
width:100%;
background-repeat:no-repeat;
background-size:cover;
}
.common{
float:left;
}
.content{
height:60%;
}
.start{
width:33%;
}
.forming {
background-color:#B0F9E8;
border:5px solid blue;
text-align:left;
width:500px;
font-size:25px;
}
.end{
}
</style>
</head>
<body>
<div class="main">
<div class="header">
.
</div><br><br><br><br><br><br><br><br>
<div class="content">
<div class="common start">.</div>
<div class="common forming">
<form>
<label>Name:</label>
<input type="text" name="fnmae" ><br><br>
<label>City:</label>
<select >
<option>Rajkot</option>
<option>Ahmeadabad</option>
<option>Morbi</option>
</select><br><br>
<label >Address:</label>
<textarea ></textarea><br><br>
<label>Type of food:</label>
<input type="radio" name="veg">Vegetarian
<input type="radio" name="nveg">Non-vegetarian<br><br>
<input type="button" onclick="window.location.href='thank.html'"value="Donate">
<input type="button" onclick="window.location.href='know.html'" value="Know us">
</form>
</div>
<div class="end common"></div>
</div>
</body>
</html>