Upload 3 files
Browse files- index (3).html +48 -0
- script (2).js +3 -0
- styles (2).css +54 -0
index (3).html
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
<!DOCTYPE html>
|
3 |
+
<html lang="en">
|
4 |
+
<head>
|
5 |
+
<meta charset="UTF-8">
|
6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
7 |
+
<title>Ronald Capital Clone</title>
|
8 |
+
<link rel="stylesheet" href="styles.css">
|
9 |
+
</head>
|
10 |
+
<body>
|
11 |
+
<header class="header">
|
12 |
+
<div class="logo">⦷</div>
|
13 |
+
<nav class="nav-menu">
|
14 |
+
<ul>
|
15 |
+
<li><a href="#thesis">THESIS</a></li>
|
16 |
+
<li><a href="#what-we-do">WHAT WE DO</a></li>
|
17 |
+
<li><a href="#portfolio">PORTFOLIO</a></li>
|
18 |
+
</ul>
|
19 |
+
</nav>
|
20 |
+
</header>
|
21 |
+
<main>
|
22 |
+
<section id="thesis" class="section">
|
23 |
+
<h2>THESIS</h2>
|
24 |
+
<p>We believe that Bitcoin and other cryptographically-protected sound money are the next frontier of technological revolution.</p>
|
25 |
+
<p class="sub-text">A Timothy Ronald’s family office fund, we do not seek any outside capital.</p>
|
26 |
+
</section>
|
27 |
+
<section id="what-we-do" class="section">
|
28 |
+
<h2>WHAT WE DO</h2>
|
29 |
+
<p>We are Value Driven Investors that make long term investments in liquid digital assets and venture equity in companies that build products in the blockchain ecosystem.</p>
|
30 |
+
</section>
|
31 |
+
<section id="portfolio" class="section">
|
32 |
+
<h2>PORTFOLIO</h2>
|
33 |
+
<div class="portfolio-item">
|
34 |
+
<h3>Liquid Digital Assets</h3>
|
35 |
+
<p>Bitcoin BTC, SUI SUI, Solana SOL</p>
|
36 |
+
</div>
|
37 |
+
<div class="portfolio-item">
|
38 |
+
<h3>Venture Equity</h3>
|
39 |
+
<p>Akademi Crypto, D3 Labs</p>
|
40 |
+
</div>
|
41 |
+
</section>
|
42 |
+
</main>
|
43 |
+
<footer class="footer">
|
44 |
+
<p>© 2025 Ronald Capital Clone. All rights reserved.</p>
|
45 |
+
</footer>
|
46 |
+
<script src="script.js"></script>
|
47 |
+
</body>
|
48 |
+
</html>
|
script (2).js
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
// Placeholder for interactivity (if needed in future)
|
3 |
+
console.log("Ronald Capital Clone script loaded.");
|
styles (2).css
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
/* General Reset */
|
3 |
+
body, html {
|
4 |
+
margin: 0;
|
5 |
+
padding: 0;
|
6 |
+
box-sizing: border-box;
|
7 |
+
font-family: Arial, sans-serif;
|
8 |
+
background: black;
|
9 |
+
color: white;
|
10 |
+
}
|
11 |
+
|
12 |
+
.header {
|
13 |
+
display: flex;
|
14 |
+
justify-content: space-between;
|
15 |
+
align-items: center;
|
16 |
+
padding: 10px 20px;
|
17 |
+
background: rgba(0, 0, 0, 0.8);
|
18 |
+
position: sticky;
|
19 |
+
top: 0;
|
20 |
+
z-index: 1000;
|
21 |
+
}
|
22 |
+
|
23 |
+
.logo {
|
24 |
+
font-size: 24px;
|
25 |
+
font-weight: bold;
|
26 |
+
}
|
27 |
+
|
28 |
+
.nav-menu ul {
|
29 |
+
list-style: none;
|
30 |
+
display: flex;
|
31 |
+
gap: 20px;
|
32 |
+
}
|
33 |
+
|
34 |
+
.nav-menu a {
|
35 |
+
text-decoration: none;
|
36 |
+
color: white;
|
37 |
+
font-weight: bold;
|
38 |
+
}
|
39 |
+
|
40 |
+
.section {
|
41 |
+
padding: 50px 20px;
|
42 |
+
text-align: center;
|
43 |
+
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
44 |
+
}
|
45 |
+
|
46 |
+
.portfolio-item {
|
47 |
+
margin: 20px 0;
|
48 |
+
}
|
49 |
+
|
50 |
+
.footer {
|
51 |
+
text-align: center;
|
52 |
+
padding: 20px;
|
53 |
+
background: rgba(0, 0, 0, 0.9);
|
54 |
+
}
|