|
|
|
<!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> |
|
|