-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (99 loc) · 4.03 KB
/
index.html
File metadata and controls
109 lines (99 loc) · 4.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Numerai</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="navbar">
<div class="logo">
<img src="logo.png" alt="Numerai Logo">
</div>
<nav class="nav-links">
<a href="/docs">DOCS</a>
<a href="/forum">FORUM</a>
<a href="/discord">DISCORD</a>
<a href="/github">GITHUB</a>
<a href="/fund">FUND</a>
<a href="/signals">SIGNALS</a>
<a href="/crypto">CRYPTO</a>
<a href="/leaderboard">LEADERBOARD</a>
</nav>
<div class="auth-buttons">
<button class="btn-login">LOGIN</button>
<button class="btn-signup">SIGN UP</button>
</div>
</header>
<main class="body">
<div class="hero-section">
<div class="hero-content">
<h1>The hardest data science tournament in the world.</h1>
<p>Predict the stock market with AI to power our hedge fund.</p>
<div class="hero-actions">
<button class="btn-signup-lg">SIGN UP</button>
<button class="btn-leaderboard">VIEW LEADERBOARD</button>
</div>
</div>
</div>
<div class="hero-background"></div>
</main>
<div class="villan-body">
<div class="villan-big-text">Start with hedge fund quality data.</div><br>
<div class="villan-small-text">It is clean and regularized ,designed to be usable right away. Obfuscated, so it
can be given out of free. </div><br>
<div class="villan-arrangment"><button class="villan-btn">Download Data</button></div>
</div><br><br>
<div class="arrangment"><img class="image-texture" src="Screenshot 2025-10-30 221300.png"></div>
<div><br><br>
<div class="container">
<div class="texture">Each id corresponds to a stock at a specific time era. The features describe the
various quantitative
attributes of the stock at the time. The target represents an abstract measure of performance a fixed
number
of weeks into the future.</div>
</div>
</div><br>
<div class="container">
<hr class="section">
</div>
<div class="side-section">
<div class="villan-big-text">Apply machine learning to predict the stock market</div>
</div>
<main class="side-section">
<h1>Join the network and build the<br>world's last hedge fund.</h1>
<p class="subtitle">Backed by Union Square Ventures, the co-founder of Renaissance, and the co-founder of
Coinbase.</p>
<div class="update-form">
<p>Receive updates about Numerai</p>
<form>
<input type="email" placeholder="Email" aria-label="Email for updates">
<button type="submit">SUBSCRIBE</button>
</form>
</div>
</main>
<footer class="footer-section">
<div class="footer-links">
<div>
<strong>General enquiries</strong><br>
<a href="mailto:contact@numer.ai">contact@numer.ai</a>
</div>
<div>
<strong>Careers</strong><br>
<a href="#">Wellfound</a>
</div>
<div>
<strong>Investor enquiries</strong><br>
<a href="mailto:investing@numer.ai">investing@numer.ai</a>
</div>
</div>
<p class="footer-note">
Note: Numerai runs a quantitative global equity market neutral hedge fund which is unsuitable for most
investors. The fund is designed for institutional investors though some high net worth accredited
individuals may qualify.
</p>
</footer>
</body>
</html>