-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (118 loc) · 5.05 KB
/
index.html
File metadata and controls
124 lines (118 loc) · 5.05 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Finora - Your Investment Platform</title>
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar">
<div class="container">
<div class="logo">
<h1>Finora</h1>
</div>
<ul class="nav-links">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="signup.html">Sign Up</a></li>
<button id="themeToggle" class="btn btn-secondary">Dark Mode</button>
</ul>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<h2>Invest Smart, Grow Fast</h2>
<p>Your complete platform for trading and investing. Fast, secure, and simple.</p>
<button class="btn btn-primary">Get Started</button>
</div>
</section>
<!-- Features Section -->
<section class="features">
<div class="container">
<h2>Our Platform Features</h2>
<div class="features-grid">
<div class="feature-card">
<h3>Ultra-Fast Trading</h3>
<p>Experience lightning-fast execution with our advanced trading platform. Real-time market data and streaming charts at your fingertips.</p>
</div>
<div class="feature-card">
<h3>Smart Analytics</h3>
<p>Gain deep insights into your portfolio with detailed analytics and comprehensive reports. Make informed decisions with confidence.</p>
</div>
<div class="feature-card">
<h3>Commission-Free Investing</h3>
<p>Invest in mutual funds directly without any commission. Keep more of your money and maximize your returns.</p>
</div>
<div class="feature-card">
<h3>24/7 Support</h3>
<p>Our dedicated support team is always here to help. Get answers to your questions anytime, anywhere.</p>
</div>
</div>
</div>
</section>
<!-- Products Preview Section -->
<section class="products-preview">
<div class="container">
<h2>Our Products</h2>
<div class="products-grid">
<div class="product-card">
<h3>Kite</h3>
<p>Our flagship trading platform with streaming market data, advanced charts, and an elegant UI.</p>
<a href="products.html" class="btn btn-secondary">Learn More</a>
</div>
<div class="product-card">
<h3>Console</h3>
<p>The central dashboard for your account. Gain insights with in-depth reports and visualizations.</p>
<a href="products.html" class="btn btn-secondary">Learn More</a>
</div>
<div class="product-card">
<h3>Coin</h3>
<p>Buy direct mutual funds online, commission-free. Delivered directly to your Demat account.</p>
<a href="products.html" class="btn btn-secondary">Learn More</a>
</div>
</div>
</div>
</section>
<!-- Call to Action Section -->
<section class="cta">
<div class="container">
<h2>Ready to Start Your Investment Journey?</h2>
<p>Join thousands of investors who trust us with their financial goals.</p>
<button class="btn btn-primary">Sign Up Today</button>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h4>About Finora</h4>
<p>We provide simple, transparent, and secure investment solutions for everyone.</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Follow Us</h4>
<p>Connect with us on social media for updates and insights.</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Finora All rights reserved.</p>
</div>
</div>
</footer>
<script src="./js/script.js"></script>
</body>
</html>