-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (84 loc) · 2.81 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Combat-interactive.com</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="site-header">
<div class="container">
<h1>Combat Interactive</h1>
<nav>
<ul>
<li><a href="#landing">Home</a></li>
<li><a href="#featured">Featured Products</a></li>
<li><a href="#services">Our Services</a></li>
<li><a href="#blog">Blog</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
<section id="landing" class="landing-page">
<div class="container">
<h2>Welcome to Combat Interactive</h2>
<p>Discover the latest in web design and security innovation.</p>
<a href="#" class="btn">Shop Now</a>
</div>
</section>
<section id="featured" class="featured-products">
<div class="container">
<h2>Featured Products</h2>
<div class="product-list">
<!-- Product cards will be dynamically generated here -->
</div>
</div>
</section>
<section id="services" class="our-services">
<div class="container">
<h2>Our Services</h2>
<div class="service-list">
<!-- Service cards will be dynamically generated here -->
</div>
</div>
</section>
<section id="blog" class="blog">
<div class="container">
<h2>Latest Blog Posts</h2>
<div class="blog-posts">
<!-- Blog posts will be dynamically generated here -->
</div>
</div>
</section>
<section id="contact" class="contact-us">
<div class="container">
<h2>Contact Us</h2>
<p>Get in touch via:</p>
<br>
<p>Discord: Lum_.</p>
<br>
<p>Telegram: FluffyArchi</p>
</div>
</section>
<footer class="site-footer">
<div class="container">
<p>© 2024 Combat Interactive. All rights reserved.</p>
</div>
</footer>
<div class="cart-popup">
<div class="cart-content">
<h3>Shopping Cart</h3>
<ul id="cart-items">
<!-- Cart items will be dynamically generated here -->
</ul>
<div class="cart-actions">
<button id="clear-cart-btn" class="btn clear-cart-btn">Clear Cart</button>
<button id="checkout-btn" class="btn checkout-btn">Checkout</button>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>