-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (50 loc) · 1.74 KB
/
Copy pathindex.html
File metadata and controls
56 lines (50 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student course portal - Home</title>
</head>
<body>
<header>
<h1>student course portal</h1>
<img src="campus pic.jpg" alt="Student Course Portal Logo" Width="300" height="300">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="course.html">Courses</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="welcome">
<h2>Welcome to the portal</h2>
<p>Your gateway to managing your courses and academic journey.</p>
</section>
<section id="quick-links">
<h2>Quick Links</h2>
<ul>
<li><a href="#about">about our portal</a></li>
<li><a href="#features">Key features</a></li>
</ul>
</section>
<section id="about">
<h2>About Our Portal</h2>
<p>This portal is designed to help students easily access course materials, track their progress, and communicate with instructors.</p>
</section>
<section id="features">
<h2>Key Features</h2>
<ul>
<li>24/7 Access to Course materials</li>
<li>intreactive quiz nd assingment</li>
<li>Instructor Communication</li>
<li>Personolised progress tracking</li>
</ul>
</section>
</main>
<footer>
<p>© Bennett university. All rights reserved.</p>
</footer>
</body>
</html>