-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (61 loc) · 1.85 KB
/
index.html
File metadata and controls
67 lines (61 loc) · 1.85 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Web3 Galaxy</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>Web3 Galaxy</h1>
<nav>
<a href="#hero">Home</a>
<a href="#about">About</a>
<a href="#team">Team</a>
<a href="#partners">Partners</a>
</nav>
<button id="connectBtn">Connect Wallet</button>
</header>
<section id="hero">
<canvas id="webgl"></canvas>
<div class="hero-content">
<h2>Step Into the Web3 Metaverse</h2>
<p>Blockchain. NFTs. DAOs. All in one universe.</p>
<a href="#about" class="btn">Explore</a>
</div>
</section>
<section id="about">
<h3>About Web3 Galaxy</h3>
<p>Web3 Galaxy is a decentralized platform empowering users to take control of their data and digital assets.</p>
</section>
<section id="team">
<h3>Our Core Team</h3>
<div class="card-container">
<div class="card">
<img src="assets/team1.jpg" alt="Team Member 1" />
<h4>Jane Doe</h4>
<p>Blockchain Engineer</p>
</div>
<div class="card">
<img src="assets/team2.jpg" alt="Team Member 2" />
<h4>John Smith</h4>
<p>Smart Contract Lead</p>
</div>
</div>
</section>
<section id="partners">
<h3>Our Partners</h3>
<div class="partners">
<img src="assets/partner1.png" alt="Partner 1" />
<img src="assets/partner2.png" alt="Partner 2" />
</div>
</section>
<footer>
<p>© 2025 Web3 Galaxy. All rights reserved.</p>
</footer>
<!-- 3D and Wallet Scripts -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/three.min.js"></script>
<script src="script.js"></script>
</body>
</html>