-
Notifications
You must be signed in to change notification settings - Fork 2
/
details1.html
124 lines (120 loc) · 5.5 KB
/
details1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="project.css">
<link rel="stylesheet" href="chatbot.css">
</head>
<body bgcolor="#00003b">
<div class="navbar">
<img class="logo" src="logofinal.png">
<div class="menu_items">
<ul type="none" class="menu_list">
<li><a href="about.html" class="menu_option">ABOUT</a></li>
<li><a href="project.html" class="menu_option">PROJECTS</a></li>
<li><a href="sibs.html" class="menu_option">SIBs</a></li>
<LI><a href="signup.html" class="menu_option">SIGN UP</a></LI>
</ul>
</div>
</div>
<div class="container">
<div class="project-details">
<div class="text-det">
<h2 style="font-size: 64px;">PowerPool</h2>
<p style="font-size: 18px;">Safe Sakhi is a women safety app that is an all in one platform. It allows women to connect, educate and protect themselves.</p>
<button class="rounded" onclick="windows.location.href='https://powerpool-baec.vercel.app/'">VIEW WEBSITE</button>
</div>
<div class="image-wrapper">
<IMG src="download.png" class="image">
</div>
</div>
</div>
<div class="extra">
<div class="bento-grid">
<div class="item item1">
<div class="head">Features</div>
<div class="subtext">
<ul type="disc" class="features">
<li>Carbon Emission Tracker</li>
<li>Resources</li>
<li>Marketplace</li>
<li>Government Schemes</li>
</ul>
</div>
<div class="head">What Makes Us Different</div>
<div class="subtext">
<ul type="disc" class="features">
<li>Track your carbon emission and sell extra energy</li>
<li>Check out job opportunities and investments related to renewable energy</li>
<li>Stay updated about government plans in your area</li>
<li>Participate in quizes to check your knowledge and gain points</li>
</ul>
</div>
</div>
<div class="item item2">
<div class="head">Techstacks Used</div>
<div class="subtext">
<ul type="none" class="features no-bullet">
<li>Web Development</li>
<li>HTML and CSS</li>
<li>JavaScript</li>
</ul>
</div>
</div>
<div class="item item3" style="padding-top: 20px;padding-bottom: 20px";>
<div class="head">Amount </div>
<div class="subtext">
<p class="features">For my PowerPool project, I’m looking for investors who can provide around $8,000 in funding, along with market exposure and expertise. </p>
</div>
</div>
<div class="item item4" style="padding-top: 20px;padding-bottom: 20px;">
<div class="head">What Are You Looking For From Investors</div>
<div class="subtext">
<ul type="disc" class="features">
<li>I value insights from those in the social impact and tech sectors to refine our features and ensure we meet real-world needs. </li>
<li>Access to development tools and strategic partnerships would also enhance our reach, making PowerPool a worldwide platform for renewable energy trading.</li>
</ul>
</div>
</div>
</div>
<div class="progress">
<div class="ite progress-graph"></div>
<div class="ite overview"></div>
</div>
</div>
<div class="container">
<div class="project-details" style="margin-top: -10%;">
<div class="image-wrapper">
<IMG src="market-trends-analysis.jpg" class="image">
</div>
<div class="text-det">
<h2 style="font-size: 64px;">25% Avg. Growth</h2>
<p style="font-size: 18px;">Powerpool has seen an average of 25% success in the last few years while providing customer satisfaction.</p>
<button class="rounded" onclick="window.location='investment.html'">INVEST</button>
</div>
</div>
</div>
<div id="gradient1"></div>
<div id="gradient2"></div>
<div id="gradient3"></div>
<div id="gradient4"></div>
<!-- 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>
<script src="chatbot.js"></script>
</body>
</html>