-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathorder.html
154 lines (98 loc) · 4.78 KB
/
order.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!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>Document</title>
<link rel="stylesheet" href="CSS/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<section class="navBar">
<div class="nav">
<div class="navLogo maintitle neumorphic outset text-white">Syket Das
<i onclick="tog();" class="fa fa-car"></i>
</div>
<div class="navItems" id="navItems">
<div class="home"><a href="index.html">Home</a></div>
<div class="categories"><a href="categories.html">Categories</a></div>
<div class="products"><a href="products.html">Products</a></div>
<div class="contact"><a href="contact.html">Contact Us</a></div>
</div>
</div>
</section>
<!------------------------------- explore----------------------------- -->
<section class="order">
<section class="orderAera">
<div class="orderHeading">
<h2 class="text-center">Fill this form to confirm yor order</h2>
</div>
<div class="orderform">
<form action="">
<fieldset class="fieldset">
<legend>Selected Product</legend>
<div class="orderedProductImage" >
<img src="./edit1.jpg" alt="product img" height="300px" width="300px" >
<div class="productDesc"><br>
<span>Product Name: </span><span>SMokey Burger</span>
<br><br>
<span>Price: </span><span>$50</span>
<br><br>
<h4>Quantity</h4>
<input type="number" placeholder="Quantity" name="" id="">
</div>
<hr><br>
<div class="another">
<h4>Full Name</h4>
<input type="text" name="" placeholder="Enter Your Name" id="">
<h4>Phone Number</h4>
<input type="number" name="" placeholder="Enter Your Number" id="">
<h4>Email </h4>
<input type="email" name="" placeholder="Enter Your Email" id="">
<h4>Address </h4>
<textarea name="" id="" placeholder="Enter Your Address" cols="20" rows="5"></textarea>
<br>
<input type="submit" value="Place Order">
</div>
</fieldset>
<!-- <fieldset>
<legend>Your Information</legend>
<div class="productDesc">
<h4>Full Name</h4>
<input type="text" name="" placeholder="Enter Your Name" id="">
<h4>Phone Number</h4>
<input type="number" name="" placeholder="Enter Your Number" id="">
<h4>Email </h4>
<input type="email" name="" placeholder="Enter Your Email" id="">
<h4>Address </h4>
<textarea name="" id="" placeholder="Enter Your Address" cols="20" rows="5"></textarea>
<br>
<input type="submit" value="Place Order">
</div>
</fieldset> -->
</form>
</div>
</section>
</section>
<footer>
<div class="footer" >
<div class="footerArea">
<div class="footerLeft">
<h3>Follow Us On</h3>
<i class="fa fa-facebook"></i>
<i class="fa fa-instagram"></i>
<i class="fa fa-twitter"></i>
</div>
<div class="footerRight">
Good Products Good Life
</div>
</div>
<div class="developer text-center">
Developed By Syket Das | <span>All Right Reserved </span>
</div>
</div>
</footer>
<script src="./JS/main.js"></script>
</body>
</html>