-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.html
164 lines (149 loc) · 6.73 KB
/
project.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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Projects - Filter by Domain</title>
<!-- Google Fonts and Font Awesome -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- Link to CSS -->
<link rel="stylesheet" href="projects.css">
<link rel="stylesheet" href="chatbot.css">
</head>
<body class="dark-theme">
<!-- Header Section -->
<header>
<div class="container">
<h1>Our Projects</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Filter Section -->
<section class="filter">
<div class="container">
<h2>Filter by Domain</h2>
<div class="filter-buttons">
<button class="filter-btn" data-filter="all">All</button>
<button class="filter-btn" data-filter="fintech">FinTech</button>
<button class="filter-btn" data-filter="edtech">EdTech</button>
<button class="filter-btn" data-filter="healthtech">HealthTech</button>
<button class="filter-btn" data-filter="envtech">EnvTech</button>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="projects">
<div class="container">
<h2>Featured Projects</h2>
<p>Explore the impactful projects that are transforming the world.</p>
<div class="projects-grid">
<!-- Project Card 1 (FinTech) -->
<div class="project-card fintech">
<div class="project-info">
<h3>Blockchain Payment System</h3>
<p>A decentralized payment system for the unbanked population.</p>
<div class="project-hover">
<a href="#" class="btn">View Details</a>
</div>
<div class="project-hover">
<a href="#" class="btn">Invest Now</a>
</div>
</div>
</div>
<!-- Project Card 2 (EdTech) -->
<div class="project-card edtech">
<div class="project-info">
<h3>Virtual Classroom Platform</h3>
<p>Bringing quality education to remote areas using virtual classrooms.</p>
<div class="project-hover">
<a href="#" class="btn">View Details</a>
</div>
<div class="project-hover">
<a href="#" class="btn">Invest Now</a>
</div>
</div>
</div>
<!-- Project Card 3 (HealthTech) -->
<div class="project-card healthtech">
<div class="project-info">
<h3>AI-Powered Telemedicine</h3>
<p>Providing affordable healthcare through AI and telemedicine services.</p>
<div class="project-hover">
<a href="#" class="btn">View Details</a>
</div>
<div class="project-hover">
<a href="#" class="btn">Invest Now</a>
</div>
</div>
</div>
<!-- Project Card 4 (EnvTech) -->
<div class="project-card envtech">
<div class="project-info">
<h3>Clean Energy Solution</h3>
<p>Innovative solar energy solutions for rural areas.</p>
<div class="project-hover">
<a href="#" class="btn" onclick="window.location.href='details1.html'">View Details</a>
</div>
<div class="project-hover">
<a href="#" class="btn" onclick="window.location.href='investment.html'">Invest Now</a>
</div>
</div>
</div>
<!-- Project Card 5 (FinTech) -->
<div class="project-card fintech">
<div class="project-info">
<h3>Microfinance App</h3>
<p>A digital solution for microloans and financial inclusion.</p>
<div class="project-hover">
<a href="#" class="btn">View Details</a>
</div>
<div class="project-hover">
<a href="#" class="btn">Invest Now</a>
</div>
</div>
</div>
<!-- Project Card 6 (EdTech) -->
<div class="project-card edtech">
<div class="project-info">
<h3>Interactive Learning Games</h3>
<p>Enhancing education through engaging and interactive learning games.</p>
<div class="project-hover">
<a href="#" class="btn">View Details</a>
</div>
<div class="project-hover">
<a href="#" class="btn">Invest Now</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Chatbot Code -->
<button id="chatbot-toggle" class="chatbot-button">Chat with Us</button>
<div id="chatbot-overlay" class="overlay">
<div class="chatbot-content">
<div class="chatbot-header">
Chatbot Assistant
<span class="chatbot-close-btn" onclick="toggleChatbot()">X</span>
</div>
<div id="chatbot-messages" class="chatbot-messages"></div>
<div class="chatbot-input-area">
<input type="text" id="chatbot-input" placeholder="Type your message..." />
<button id="chatbot-send-btn">Send</button>
</div>
</div>
</div>
<!-- JavaScript -->
<script src="project.js"></script>
<script src="chatbot.js"></script>
</body>
</html>