GarGerry commited on
Commit
d0ae61d
·
verified ·
1 Parent(s): 7fc2afc

Upload 3 files

Browse files
Files changed (3) hide show
  1. index (4).html +54 -0
  2. script (3).js +5 -0
  3. styles (3).css +92 -0
index (4).html ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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="navigation">
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
+ <div class="menu-toggle">&#9776;</div>
21
+ </header>
22
+
23
+ <section id="thesis" class="section">
24
+ <h1>We believe that Bitcoin and other cryptographically-protected sound money are the next frontier of technological revolution</h1>
25
+ <p>A Timothy Ronald’s family office fund, we do not seek any outside capital.</p>
26
+ </section>
27
+
28
+ <section id="what-we-do" class="section">
29
+ <h2>We are Value Driven Investors</h2>
30
+ <p>that make long term investments in liquid digital assets and venture equity in companies that build products in the blockchain ecosystem.</p>
31
+ </section>
32
+
33
+ <section id="portfolio" class="section">
34
+ <h2>Portfolio</h2>
35
+ <div class="portfolio">
36
+ <div class="item">
37
+ <h3>Liquid Digital Assets</h3>
38
+ <p>Bitcoin BTC, SUI SUI, Solana SOL</p>
39
+ </div>
40
+ <div class="item">
41
+ <h3>Venture Equity</h3>
42
+ <p>Akademi Crypto, D3 Labs</p>
43
+ </div>
44
+ </div>
45
+ <p>A Timothy Ronald’s family office fund, we do not seek any outside capital.</p>
46
+ </section>
47
+
48
+ <footer class="footer">
49
+ <p>&copy; 2025 Ronald Capital. All Rights Reserved.</p>
50
+ </footer>
51
+
52
+ <script src="script.js"></script>
53
+ </body>
54
+ </html>
script (3).js ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+
2
+ // Placeholder for any interactive JS functionality
3
+ document.querySelector('.menu-toggle').addEventListener('click', () => {
4
+ document.querySelector('.navigation').classList.toggle('active');
5
+ });
styles (3).css ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ * {
3
+ margin: 0;
4
+ padding: 0;
5
+ box-sizing: border-box;
6
+ }
7
+
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ background: black;
11
+ color: white;
12
+ line-height: 1.6;
13
+ margin: 0;
14
+ }
15
+
16
+ .header {
17
+ display: flex;
18
+ justify-content: space-between;
19
+ align-items: center;
20
+ padding: 20px;
21
+ background: black;
22
+ border-bottom: 1px solid white;
23
+ position: sticky;
24
+ top: 0;
25
+ z-index: 1000;
26
+ }
27
+
28
+ .logo {
29
+ font-size: 24px;
30
+ font-weight: bold;
31
+ }
32
+
33
+ .navigation ul {
34
+ display: flex;
35
+ list-style: none;
36
+ }
37
+
38
+ .navigation ul li {
39
+ margin: 0 15px;
40
+ }
41
+
42
+ .navigation ul li a {
43
+ text-decoration: none;
44
+ color: white;
45
+ font-size: 16px;
46
+ transition: color 0.3s;
47
+ }
48
+
49
+ .navigation ul li a:hover {
50
+ color: grey;
51
+ }
52
+
53
+ .menu-toggle {
54
+ display: none;
55
+ font-size: 24px;
56
+ cursor: pointer;
57
+ }
58
+
59
+ .section {
60
+ padding: 100px 20px;
61
+ text-align: center;
62
+ }
63
+
64
+ .section h1, .section h2 {
65
+ font-size: 36px;
66
+ margin-bottom: 20px;
67
+ }
68
+
69
+ .section p {
70
+ font-size: 18px;
71
+ max-width: 800px;
72
+ margin: 0 auto;
73
+ }
74
+
75
+ .portfolio {
76
+ display: flex;
77
+ justify-content: center;
78
+ gap: 50px;
79
+ margin-top: 20px;
80
+ }
81
+
82
+ .item h3 {
83
+ font-size: 24px;
84
+ margin-bottom: 10px;
85
+ }
86
+
87
+ .footer {
88
+ text-align: center;
89
+ padding: 20px;
90
+ background: black;
91
+ border-top: 1px solid white;
92
+ }