forked from Nana-king-netizen/Dummy_LMS_Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (103 loc) · 4.61 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>UG || Computer Science</title>
</head>
<body>
<header class="header">
<div class="dept-logo">
<img src="img/CS_logo.png" class="logo" alt="Computer Science Department">
</div>
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="gallery.html" target="_blank">Gallery</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<section class="intro-hm">
<div class="intro-txt">
<h1>Your Gateway To World Class Computer Science Education</h1>
</div>
</section>
<section class="what-we-offer">
<h2>What We Offer:</h2>
<div class="offers">
<div class="card short-courses">
<h3>Short Courses</h3>
<p>Our eight week intensive certificate course is open to senior high school graduates, tertiary students, school graduates, workers and the general public.</p>
<a href="shortcourses.html" class="learn-more">Learn More</a>
</div>
<div class="card undergrad-programmes">
<h3>Undergraduate Programmes</h3>
<p>Open the door to sought-after technology careers with a world-class Bachelor of Science in Computer Science degree.</p>
<a href="undergrad.html" class="learn-more">Learn More</a>
</div>
<div class="card mphil-programmes">
<h3>MPhil And Msc Programmes</h3>
<p>Embrace world class gradate education with unique blend of cutting-edge research and industry experience.</p>
<a href="mphill.html" class="learn-more">Learn More</a>
</div>
<div class="card phd-programmes">
<h3>PhD Programmes</h3>
<p>Our PHDs lead the effort to extend the boundaries of knowledge through quality and industry relevant research.</p>
<a href="phd.html" class="learn-more">Learn More</a>
</div>
</div>
</section>
<section class="departmental-events">
<div class="intro-txt">
<h1>Discover Engaging Departmental Events</h1>
<p>Join us for insightful sessions and engaging programs. Explore our upcoming events!</p>
<a href="events.html" class="learn-more" target="_blank">View Events</a>
</div>
</section>
<section class="about-section about-hm">
<div class="about-content">
<h2>Know More About Us</h2>
<p>Explore the forefront of technological innovation and creativity. Dive into our cutting-edge research and nurturing learning environment that prepares you for the challenges of tomorrow.</p>
<a href="about.html" class="learn-more">About Us</a>
</div>
</section>
<footer class="site-footer">
<div class="footer-links">
<div class="footer-section">
<h3>Academics</h3>
<ul>
<li><a href="#">Undergraduate Courses</a></li>
<li><a href="#">Graduate Courses (MPhil Computer Science)</a></li>
<li><a href="#">Graduate Courses (MSc Computer Science)</a></li>
<li><a href="#">Graduate Courses (PhD)</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Admissions</h3>
<ul>
<li><a href="#">Undergraduate</a></li>
<li><a href="#">Graduate</a></li>
<li><a href="#">International Students</a></li>
<li><a href="#">Entry Requirements</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact Us</h3>
<p>+233 501 382 035</p>
<p>+233 559 145 698</p>
<p>[email protected]</p>
<div class="social-media">
<!-- <div class="social-icons">
<a href="#" class="fa-brands fa-instagram"></a>
<a href="#" class="fa-brands fa-twitter"></a>
<a href="#" class="fa-brands fa-facebook"></a>
</div> -->
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>