GarGerry commited on
Commit
09684ac
·
verified ·
1 Parent(s): cee76cd

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +83 -19
index.html CHANGED
@@ -1,19 +1,83 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>My Portfolio</title>
7
+ <link rel="stylesheet" href="styles.css">
8
+ </head>
9
+ <body>
10
+ <div class="scroll-container">
11
+ <header class="header">
12
+ <div class="logo">T</div>
13
+ <nav class="navigation">
14
+ <ul>
15
+ <li><a href="#Home">Home</a></li>
16
+ <li><a href="#What-I-Do">What I 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="Home">
24
+ <div class="section-content">
25
+ <h1>Welcome to My World</h1>
26
+ <p>Explore my journey in the digital world of blockchain, crypto, and innovation.</p>
27
+ </div>
28
+ </section>
29
+
30
+ <section id="What-I-Do">
31
+ <div class="section-content">
32
+ <h2>My Projects</h2>
33
+ <p>I work on building digital assets and blockchain-based products.</p>
34
+
35
+ <!-- Start of project articles -->
36
+ <div class="project-container">
37
+ <div class="project-card">
38
+ <img src="assets/project1-thumbnail.jpg" alt="Project 1 Thumbnail">
39
+ <h3>Blockchain Explorer</h3>
40
+ <p>Explore real-time blockchain data with advanced analytics.</p>
41
+ <a href="https://gargerry.github.io/Currency-Converter-New/" target="assets/project1-thumbnail.jpg" class="project-link"></a>
42
+ </div>
43
+ </div>
44
+ <!-- End of project articles -->
45
+
46
+ </div>
47
+ </section>
48
+
49
+ <section id="Portfolio">
50
+ <div class="section-content">
51
+ <h2>Portfolio</h2>
52
+ <div class="portfolio">
53
+ <div class="item liquid-digital-assets">
54
+ <h3>Digital Assets</h3>
55
+ <div class="logo-container">
56
+ <img src="assets/bitcoin-btc-logo.png" alt="Bitcoin" class="portfolio-logo">
57
+ <p>Bitcoin|BTC</p>
58
+ <img src="assets/SupraLogo.png" alt="SUPRA" class="portfolio-logo">
59
+ <p>SUPRA|Supra</p>
60
+ <img src="assets/virtual.png" alt="Virtual Protocol" class="portfolio-logo">
61
+ <p>VIRTUAL|Virtual Protocol</p>
62
+ </div>
63
+ </div>
64
+ <div class="item partners">
65
+ <h3>Partners</h3>
66
+ <div class="logo-container">
67
+ <img src="images/partner-a-logo.png" alt="Partner A Logo" class="portfolio-logo">
68
+ <img src="assets/logopanter.png" alt="Partner B Logo" class="portfolio-logo">
69
+ <img src="images/partner-c-logo.png" alt="Partner C Logo" class="portfolio-logo">
70
+ </div>
71
+ </div>
72
+ </div>
73
+ </div>
74
+ </section>
75
+
76
+ <footer class="footer">
77
+ <p>&copy; 2025 Teggar Eka MS. All Rights Reserved.</p>
78
+ </footer>
79
+ </div>
80
+
81
+ <script src="script.js"></script>
82
+ </body>
83
+ </html>