-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
94 lines (84 loc) · 3.5 KB
/
index.html
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Edu Consultancy System</title>
<link rel="stylesheet" href="index.css"> <!-- Link to your CSS file -->
<script src="script.js" defer></script>
</head>
<body>
<header>
<div class="header-content">
<h1>Edu Consultancy System</h1>
<nav>
<div class="nav-links">
<a href="#about" class="nav-link">📘 About Us</a>
<a href="#services" class="nav-link">🛠️ Services</a>
<a href="#product" class="nav-link">📚 Our Product</a>
<a href="#contact" class="nav-link">📞 Contact Us</a>
<a href="#feedback" class="nav-link">📝 Feedback</a>
<a href="#dashboard" class="nav-link">📊 Dashboard</a>
</div>
<a href="login.html" class="login-button">Login</a>
</nav>
</div>
</header>
<main>
<!-- About Us Section -->
<section id="about">
<h2>About Us</h2>
<p>We provide guidance to students, parents, and organizations in educational planning and training programs.</p>
</section>
<!-- Services Section -->
<section id="services">
<h2>Our Services</h2>
<ul>
<li>Career Counseling</li>
<li>College Admission Guidance</li>
<li>Test Preparation Assistance</li>
<li>Scholarship Information</li>
<li>Appointment Scheduling</li>
<li>User Role Management (Admin, Student, Parent)</li>
</ul>
</section>
<!-- Product Section -->
<section id="product">
<h2>Our Product</h2>
<p>Explore various courses and resources available to enhance learning. Subscribe to courses and get exclusive content, including recorded videos, blog articles, and live support.</p>
<button onclick="window.location.href='product.html'">Explore Courses</button>
</section>
<!-- Dashboard Section -->
<section id="dashboard">
<h2>User Dashboard</h2>
<p>Access personalized services, view appointment status, manage subscriptions, and much more.</p>
<button onclick="window.location.href='dashboard.html'">Go to Dashboard</button>
</section>
<!-- Contact Section -->
<section id="contact">
<h2>Contact Us</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<!-- Feedback Section -->
<section id="feedback">
<h2>Feedback</h2>
<form>
<label for="feedback">Your Feedback:</label>
<textarea id="feedback" name="feedback" required></textarea>
<button type="submit">Submit Feedback</button>
</form>
</section>
</main>
<footer>
<p>© 2024 Edu Consultancy System. All rights reserved.</p>
</footer>
</body>
</html>