-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (63 loc) · 2.15 KB
/
Copy pathindex.html
File metadata and controls
66 lines (63 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blockchain University - Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Navbar -->
<header>
<nav class="navbar">
<a href="index.html" class="logo">Blockchain University</a>
<ul class="nav-links">
<li><a href="about.html">About</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="how-it-works.html">How It Works</a></li>
<li><a href="roadmap.html">Roadmap</a></li>
<li><a href="benefits.html">Benefits</a></li>
<li><a href="whitepaper.html">Whitepaper</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="menu-toggle" onclick="toggleMenu()">☰</div>
</nav>
</header>
<!-- Hero Section -->
<section class="hero">
<h1>Welcome to Blockchain University</h1>
<p>Redefining the future of education—accessible, trustworthy, and innovative.</p>
<div class="cta-buttons">
<a href="whitepaper.html" class="btn">Read Whitepaper</a>
<a href="contact.html" class="btn btn-alt">Get Involved</a>
</div>
</section>
<!-- Why Blockchain University -->
<section class="content">
<h2>🚀 Why Blockchain University?</h2>
<div class="grid">
<div class="card">
<h3>🌐 Global Accessibility</h3>
<p>Decentralized learning removes barriers and opens opportunities worldwide.</p>
</div>
<div class="card">
<h3>🔒 Secure Records</h3>
<p>Immutable blockchain records eliminate credential fraud.</p>
</div>
<div class="card">
<h3>🏅 Instant Verification</h3>
<p>Employers and institutions instantly verify NFT certifications.</p>
</div>
<div class="card">
<h3>⏱️ Efficiency</h3>
<p>Smart contract automation reduces admin tasks for educators.</p>
</div>
</div>
</section>
<footer>
<p>© 2025 Blockchain University | All Rights Reserved</p>
</footer>
<script src="script.js"></script>
</body>
</html>