-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.html
executable file
·87 lines (71 loc) · 3.29 KB
/
checkout.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="img/favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Bebas Neue' rel='stylesheet'>
<title>Checkout</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<nav class="navbar">
<div class="logo"><a href="index.html" style="text-decoration: none;color:white;">
<p style="font-family: 'Bebas Neue';">Craftique</p>
</a></div>
<div class="nav-items">
<div class="category-list">
<a href="blog.html" class="category-item">Blog</a>
<a href="tutorial-vid.html" class="category-item">Tutorial</a>
</div>
<input type="text" class="search-bar" placeholder="Search...">
<a href="watchlist.html" class="nav-link">Watchlist</a>
<a href="orders.html" class="nav-link">Orders</a>
<a href="cart.html" class="nav-link">Cart</a>
<a href="profile.html" class="nav-link">Profile</a>
</div>
</nav>
<section class="checkout">
<h2>Checkout</h2>
<div class="form-section">
<h3>Billing Details</h3>
<form>
<label for="fullname">Full Name</label>
<input type="text" id="fullname" name="fullname" placeholder="xxx xxx">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="xxx@example.com">
<label for="phone">Phone</label>
<input type="tel" id="phone" name="phone" placeholder="+91 xxxxx xxxxx">
<label for="address">Address</label>
<input type="text" id="address" name="address" placeholder="">
<label for="city">City</label>
<input type="text" id="city" name="city" placeholder="bangalore">
<label for="zip">Zip Code</label>
<input type="text" id="zip" name="zip" placeholder="xxxxxx">
<label for="country">Country</label>
<input type="text" id="country" name="country" placeholder="India">
</form>
</div>
<div class="form-section">
<h3>Payment Information</h3>
<form>
<label for="cardname">Name on Card</label>
<input type="text" id="cardname" name="cardname" placeholder="xxx xxx">
<label for="cardnumber">Credit Card Number</label>
<input type="text" id="cardnumber" name="cardnumber" placeholder="1111-2222-3333-4444">
<label for="expdate">Expiration Date</label>
<input type="text" id="expdate" name="expdate" placeholder="MM/YY">
<label for="cvv">CVV</label>
<input type="text" id="cvv" name="cvv" placeholder="xxx">
</form>
</div>
<div class="order-summary">
<h3>Order Summary</h3>
<p>Product 1 (x2): ₹39.98</p>
<p>Product 2 (x1): ₹29.99</p>
<p><strong>Total: ₹69.97</strong></p>
<button class="place-order-button">Place Order</button>
</div>
</section>
</body>
</html>