-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout.html
44 lines (41 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Checkout - Combat Interactive</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="site-header">
<div class="container">
<h1>Developer Tools and Services</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#products">Products</a></li>
<li><a href="index.html#services">Services</a></li>
<li><a href="index.html#blog">Blog</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="checkout">
<div class="container">
<h2>Checkout</h2>
<div id="checkout-details">
<!-- Display checkout details here -->
<ul id="checkout-items"></ul>
</div>
<button id="checkout-btn" class="btn">Proceed to Checkout</button>
</div>
</section>
<footer class="site-footer">
<div class="container">
<p>© 2024 Developer Tools and Services. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>