Skip to content

Commit dc66903

Browse files
authored
Add initial HTML structure for the app
1 parent d654d98 commit dc66903

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

frontend/index.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Student Roadmap App</title>
5+
<link rel="stylesheet" href="style.css">
6+
</head>
7+
<body>
8+
9+
<h1>🎓 Student Roadmap Platform</h1>
10+
<p>Helping engineering students find clear learning paths.</p>
11+
12+
<button onclick="callBackend()">Fetch Backend Data</button>
13+
14+
<pre id="output"></pre>
15+
16+
<script src="script.js"></script>
17+
</body>
18+
</html>

0 commit comments

Comments
 (0)