File size: 1,860 Bytes
d0ae61d |
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 |
<!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="navigation">
<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>
<div class="menu-toggle">☰</div>
</header>
<section id="thesis" class="section">
<h1>We believe that Bitcoin and other cryptographically-protected sound money are the next frontier of technological revolution</h1>
<p>A Timothy Ronald’s family office fund, we do not seek any outside capital.</p>
</section>
<section id="what-we-do" class="section">
<h2>We are Value Driven Investors</h2>
<p>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">
<div class="item">
<h3>Liquid Digital Assets</h3>
<p>Bitcoin BTC, SUI SUI, Solana SOL</p>
</div>
<div class="item">
<h3>Venture Equity</h3>
<p>Akademi Crypto, D3 Labs</p>
</div>
</div>
<p>A Timothy Ronald’s family office fund, we do not seek any outside capital.</p>
</section>
<footer class="footer">
<p>© 2025 Ronald Capital. All Rights Reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>
|