-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroadmap.html
More file actions
50 lines (44 loc) · 1.75 KB
/
roadmap.html
File metadata and controls
50 lines (44 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Roadmap - Blockchain University</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<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" class="active">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>
<section class="content">
<h1>🚀 Roadmap</h1>
<h2>Phase 1: Research & Planning (Months 1-3)</h2>
<p>Market analysis, blockchain feasibility, compliance framework, partnerships.</p>
<h2>Phase 2: Prototype Development (Months 4-9)</h2>
<p>Build MVP, smart contracts, NFT certification system, UI/UX testing.</p>
<h2>Phase 3: Pilot Program (Months 10-15)</h2>
<p>Launch pilot with select universities, refine verification, feedback loop.</p>
<h2>Phase 4: Full Launch (Months 16-24)</h2>
<p>Public rollout, global credential adoption, automation scaling.</p>
<h2>Phase 5: Growth & AI Integration (Months 25+)</h2>
<p>Global adoption, AI-powered learning, micro-credentials expansion.</p>
</section>
<footer>
<p>© 2025 Blockchain University | All Rights Reserved</p>
</footer>
<script src="script.js"></script>
</body>
</html>