Update index.html
Browse files- index.html +83 -19
index.html
CHANGED
@@ -1,19 +1,83 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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">☰</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>© 2025 Teggar Eka MS. All Rights Reserved.</p>
|
78 |
+
</footer>
|
79 |
+
</div>
|
80 |
+
|
81 |
+
<script src="script.js"></script>
|
82 |
+
</body>
|
83 |
+
</html>
|