File size: 1,811 Bytes
c5143b2 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ronald Capital Clone</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="header">
<div class="logo">⦷</div>
<nav class="nav-menu">
<ul>
<li><a href="#thesis">THESIS</a></li>
<li><a href="#what-we-do">WHAT WE DO</a></li>
<li><a href="#portfolio">PORTFOLIO</a></li>
</ul>
</nav>
</header>
<main>
<section id="thesis" class="section">
<h2>THESIS</h2>
<p>We believe that Bitcoin and other cryptographically-protected sound money are the next frontier of technological revolution.</p>
<p class="sub-text">A Timothy Ronald’s family office fund, we do not seek any outside capital.</p>
</section>
<section id="what-we-do" class="section">
<h2>WHAT WE DO</h2>
<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>
</section>
<section id="portfolio" class="section">
<h2>PORTFOLIO</h2>
<div class="portfolio-item">
<h3>Liquid Digital Assets</h3>
<p>Bitcoin BTC, SUI SUI, Solana SOL</p>
</div>
<div class="portfolio-item">
<h3>Venture Equity</h3>
<p>Akademi Crypto, D3 Labs</p>
</div>
</section>
</main>
<footer class="footer">
<p>© 2025 Ronald Capital Clone. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>
|