-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (39 loc) · 1.71 KB
/
index.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
<html>
<head>
<link rel="stylesheet" href="index.css">
<!-- google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Smythe&display=swap" rel="stylesheet">
<!-- font awesome cdn -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<img src="images/food.jpg" class="header-img">
</header>
<div id="menu-content">
<!-- menu content goes here -->
</div>
<div id="checkout-details">
<!-- oder detail, ready to checkout goes here -->
</div>
<div id="payment-form">
<p>Enter card details</p>
<form class="card-info">
<input type="text" placeholder="Enter your name" required>
<input type="text" placeholder="Enter your card number" required>
<input type="text" placeholder="Enter CVV" required>
<button type ="submit" id="pay-btn">Pay</button>
</form>
</div>
<div id="thanks-message">
<div class="message">
Thanks for your order! Your order is on the way!
</div>
</div>
<script src="index.js" type="module"></script>
</body>
</html>