-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
234 lines (234 loc) · 8.34 KB
/
index.html
File metadata and controls
234 lines (234 loc) · 8.34 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
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!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>Stockly</title>
<link
href="https://fonts.googleapis.com/css?family=Merriweather|Open+Sans&display=swap"
rel="stylesheet"
/>
<link href="css/index.css" rel="stylesheet" />
</head>
<body>
<script defer="defer" src="components/homepage.js"></script>
<div class="container">
<header>
<nav class="navbar">
<div class="logo-nav">
<h2 class="logoLine">
<span class="sumNav">Σ</span>tock<span>ly</span
><img src="img/helmet.svg" alt="" />
</h2>
</div>
<div class="navtab">
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<!-- <a href="#">Our Approach</a> -->
<button
class="log-in"
onclick="window.location.href='https://stockly-fe.netlify.com';"
>
Log In
</button>
<button
class="sign-up"
onclick="window.location.href='https://stockly-fe.netlify.com';"
>
Sign Up
</button>
</div>
</nav>
</header>
<!-- end of header -->
<section class="white-block">
<div class="top-content">
<div class="top-text">
<h1>Using Sentiment to Predict Stock Prices</h1>
<p>
Σtockly helps you make informative decisions as to what actions to
make given a stock's price, Twitter sentiment and careful analysis
from our machine learning model.
</p>
<div class="top-img-grid">
<p class="one">
<img src="img/globe.svg" alt="" /> Reach the world
</p>
<p class="two">
<img src="img/dollar.svg" alt="" /> Increase Gains
</p>
<p class="three">
<img src="img/pcmonitor.svg" alt="" /> Use the Power of AI
</p>
</div>
</div>
<div class="top-img-main">
<img
class="banner-img"
src="img/undraw_data_trends_b0wg.svg"
alt="#"
/>
</div>
</div>
<!-- end of top-content div -->
</section>
<!-- end of top-content section -->
<section class="blue-block">
<div class="middle-content">
<div class="middle-text">
<h2>Stay Ahead of The Market</h2>
<p>
Todays market is changing faster than ever. If you want to have a
shot at staying ahead of Wall Street, than you need to stay ahead
of the people. Stockly uses Twitter sentiment to predict stock
performance to give you the edge you need. Check out our demo!
</p>
</div>
<div class="features middle-icon">
<div class="feature active" data-tab="1">Twitter</div>
<div class="feature" data-tab="2">Tesla</div>
<div class="feature" data-tab="3">Nvidia</div>
<div class="feature" data-tab="4">IBM</div>
</div>
<div class="middle-card">
<div class="feature-content active-item" data-tab="1">
<img src="img/twitter.png" alt="" />
</div>
<div class="feature-content" data-tab="2">
<img src="img/tesla.png" alt="" />
</div>
<div class="feature-content" data-tab="3">
<img src="img/nvdia.png" alt="" />
</div>
<div class="feature-content" data-tab="4">
<img src="img/ibm.png" alt="" />
</div>
</div>
</div>
<!-- end of middle-content div -->
</section>
<!-- end of middle-content section -->
<section class="lightGrey-block">
<div class="bottom-content">
<div class="bottom-text">
<h2>See What Stockly Can Do For Your Portfolio</h2>
<p>
Stockly gives you the same advantage as having your own personal
team of Wall Street advisors. By using analyzing Twitter
sentiment, our predictive modeling can help you spend more time on
the important decisions
</p>
</div>
<div class="bottom-grid">
<div class="blurb blurb-1">
<img class="blurb-icon-1" src="img/house.svg" alt="" />
<h3>Stay Informed</h3>
<p>
Even from home, Stockly can still give you the insight you need
</p>
</div>
<div class="blurb blurb-2">
<img class="blurb-icon-2" src="img/sheild.svg" alt="" />
<h3>Protect Your Portfolio</h3>
<p>
Make sure you avoid the next downturn with "sell" indicators
</p>
</div>
<div class="blurb blurb-3">
<img class="blurb-icon-3" src="img/safeGold.svg" alt="" />
<h3>Keep Your Stocks Safe</h3>
<p>
Keep the gains from your hard work safe by letting Stockly tell
you when to "hold"
</p>
</div>
<div class="blurb blurb-4">
<img class="blurb-icon-4" src="img/spaceSuit.svg" alt="" />
<h3>Explore New Ideas</h3>
<p>
Stockly will let you know when to "buy" by predicting the next
bull run
</p>
</div>
<div class="blurb blurb-5">
<img class="blurb-icon-5" src="img/manChart.svg" alt="" />
<h3>Professional Advice</h3>
<p>
No need to stay up to date on newsletters or talking head
opinions
</p>
</div>
<div class="blurb blurb-6">
<img class="blurb-icon-6" src="img/dollarSign.svg" alt="" />
<h3>Make More Money</h3>
<p>Simply put, Stockly will help you make more money</p>
</div>
</div>
</div>
<!-- end of bottom-content div -->
</section>
<!-- end of bottom-content section -->
<footer class="footer">
<div class="cyan-block">
<div class="footer-top">
<div>
<h2>Sign Up Today</h2>
<p>Do not miss out on the opportunity to win!</p>
</div>
<div class="bottom-button">
<button
class="log-in"
onclick="window.location.href='https://stockly-fe.netlify.com';"
>
Log In
</button>
<button
class="sign-up"
onclick="window.location.href='https://stockly-fe.netlify.com';"
>
Sign Up
</button>
</div>
</div>
</div>
<div class="bottomNavy-block">
<div class="footer-bottom">
<h2>
<span class="sumNav">Σ</span>tock<span>ly</span
><img src="img/helmetWhite.svg" alt="" />
</h2>
<div class="bottom-link">
<ul>
<h3>Stocky Products</h3>
<li><a href=""></a>predictive modeling</li>
<li><a href=""></a>stock performance</li>
<li><a href=""></a>smart watchlist</li>
</ul>
<ul>
<h3>About Us</h3>
<li><a href=""></a>Team</li>
<li><a href=""></a>Our Story</li>
<li><a href=""></a>careers</li>
</ul>
<ul>
<h3>Contact</h3>
<li><a href=""></a>email</li>
<li><a href=""></a>address</li>
<li><a href=""></a>phone</li>
</ul>
<ul>
<h3>News</h3>
<li><a href=""></a>latest news</li>
<li><a href=""></a>blog</li>
<li><a href=""></a>stock news</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- end of footer -->
</div>
<!-- end of container div -->
</body>
</html>