-
Notifications
You must be signed in to change notification settings - Fork 1
/
payments.html
80 lines (58 loc) · 2.25 KB
/
payments.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="website.css">
</head>
<body>
<!-- header section starts -->
<header>
<a href="#" class="logo"><i class="fas fa-utensils"></i>Food Corner</a>
<div id="menu-bar" class="fas fa-bars"></div>
<nav class="navbar">
<a href="Home.html">Home</a>
<a href="menu.html">Menu</a>
<a href="deals.html">Deals</a>
<a href="payments.html">Payments</a>
<a href="login.html">Login & Signup</a>
<a href="cart.html"> Cart</a>
</nav>
</header>
<section class="payments" id="payments">
<h1 class="heading"> Payment </h1>
<div class="row">
<form action="">
<div class="inputBox">
<input type="text" placeholder="name">
<input type="email" placeholder="email">
</div>
<div class="inputBox">
<input type="number" placeholder="number">
<input type="text" placeholder="food name">
</div>
<textarea placeholder="address" name="" id="" cols="10" rows="10"></textarea>
<textarea placeholder="Enter payment type" name="" id="" cols="10" rows="10"></textarea>
<button><a href="Home.html" class="btn">Pay now</a></button>
</form>
</div>
</section>
<section class="footer">
<div class="share">
<button><a href="facebook.com" class="btn">facebook</a></button>
<button> <a href="twitter.com" class="btn">twitter</a></button>
<button><a href="Instagram.com" class="btn">instagram</a></button>
</div>
<h1 class="credit"> created by : </h1>
<div class="social">
<a href="www.facebook.com"><i class="fab fa-facebook-f"></i></a>
<a href="www.twitter.com"><i class="fab fa-twitter"></i></a>
<a href="www.instagram.com"><i class="fab fa-instagram"></i></a>
<a href="www.linkedin.com"><i class="fab fa-linkedin-in"></i></a>
</div>
</section>
</body>
</html>