-
Notifications
You must be signed in to change notification settings - Fork 0
/
Services.html
56 lines (52 loc) · 2.5 KB
/
Services.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
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>Services page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form>
<h2 class="color"><i>         Flower-Bouquet order Form</i></h2>
<div class="text-color">
<label for="name">           
             
       Name:</label>
<input type="text" name="name" id="name" /><br>
<br>
<label
for="mobile">           
             
       Mobile
No:</label>
<input type="text" name="mobile" id="mobile"><br>
<br>
<label for="flower-bouquet">
             
             
     Name
of Flower-Bouquet:</label>
<input type="text" name="flower-bouquet" id="flower-bouquet"><br>
<br>
<label
for="date">            
              
     Arrival
Date:</label>
<input type="date" name="date" id="return-date"><br>
<br>
<label
for="time">            
              
     Arrival
Time:</label>
<input type="time" name="time" id="time" required><br>
<br>
<br>
              
              
   <button
class="btn text-color"><b>Order Now</b></button>
</div>
</form>
</body>
</html>