-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsales.html
55 lines (55 loc) · 2.11 KB
/
sales.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Warehouse Inventory System</title>
<link rel="stylesheet" href="stylesales.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#cta">Try Now</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav>
<h1>Warehouse Inventory System</h1>
</header>
<main>
<section class="intro" id="home">
<h2>Manage Your Inventory Effortlessly!</h2>
<p>Streamline your warehouse operations with our intuitive inventory management system. Perfect for small and medium businesses.</p>
</section>
<section class="features" id="features">
<h3>Key Features</h3>
<div class="feature-card">
<img src="icons/add.png" alt="Add Products">
<p>Add and manage products easily.</p>
</div>
<div class="feature-card">
<img src="icons/search.png" alt="Search Items">
<p>Quickly search for specific items.</p>
</div>
<div class="feature-card">
<img src="icons/excel.png" alt="Export Excel">
<p>Export your data to Excel files.</p>
</div>
</section>
<section class="cta" id="cta">
<h3>Try it Free for 7 Days!</h3>
<button onclick="window.location.href='inventory.html'">Try Demo Version</button>
<button onclick="window.location.href='https://paypal.com'">Subscribe Now</button>
</section>
<section class="contact" id="contact">
<h3>Contact Us</h3>
<p>For any inquiries, please email us at support@warehouse.com.</p>
</section>
</main>
<footer>
<p>© 2024 Warehouse System. All rights reserved.</p>
</footer>
</body>
</html>