-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 875 Bytes
/
index.html
File metadata and controls
35 lines (31 loc) · 875 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>CourseFlow</h1>
<nav>
<a href="index.html">Home</a>
<a href="course.html">My Courses</a>
<a href="add-course.html">Add Course</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<section>
<h2>Welcome to Your Personal Course Organizer</h2>
<p>
This platform is designed to help you efficiently manage and organize your academic courses.
You can keep track of your enrolled subjects, add new courses, and stay updated with all your academic information in one place.
</p>
</section>
</main>
<footer>
<p>© 2026 CourseFlow</p>
</footer>
</body>
</html>