-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaculty.html
More file actions
85 lines (82 loc) · 4.53 KB
/
faculty.html
File metadata and controls
85 lines (82 loc) · 4.53 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Faculty - Destini College</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body id="faculty">
<div class="main">
<nav>
<div class="logo">
<a href="index.html"> <img src="destini logo.png" alt="Destini College Logo"></a>
</div>
<nav class="nav-menu">
<div class="nav-links">
<a href="index.html">Home</a>
<a href="course.html">Courses</a>
<a href="examination.html">Examination</a>
<a href="faculty.html">Faculty</a>
<a href="aboutus.html">About Us</a>
<a href="enquiry.html">Support</a>
</div>
<div class="hamburger" id="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</nav>
<div class="mobile-menu" id="mobile-menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="course.html">Courses</a></li>
<li><a href="examination.html">Examination</a></li>
<li><a href="faculty.html">Faculty</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="enquiry.html">Support</a></li>
</ul>
</div>
</nav>
<section id="faculty-section">
<h2>Meet Our Faculty</h2>
<p>Our faculty members are dedicated to teaching and guiding students to reach their full potential. With a diverse range of expertise and a passion for education, they are committed to helping you succeed.</p>
<div class="faculty-members">
<div class="faculty-member">
<img src="faculty2.jpeg" alt="Dr. Jane Doe">
<h3>Dr. Jane Doe</h3>
<p>Head of Computer Science Department</p>
<p>Dr. Jane Doe specializes in artificial intelligence and has over 20 years of experience in the field. She has published numerous papers and is passionate about guiding students in cutting-edge research.</p>
<a href="mailto:jane.doe@destinicollege.edu" class="contact-link"><i class="fas fa-envelope"></i> Email</a>
</div>
<div class="faculty-member">
<img src="faculty1.jpeg" alt="Prof. John Smith">
<h3>Prof. John Smith</h3>
<p>Professor of Mechanical Engineering</p>
<p>Prof. John Smith has a wealth of experience in mechanical systems and design. His research focuses on sustainable engineering practices, and he is dedicated to mentoring students in practical, hands-on projects.</p>
<a href="mailto:john.smith@destinicollege.edu" class="contact-link"><i class="fas fa-envelope"></i> Email</a>
</div>
<div class="faculty-member">
<img src="faculty3.jpeg" alt="Dr. Emily Davis">
<h3>Dr. Emily Davis</h3>
<p>Senior Lecturer in Data Science</p>
<p>Dr. Emily Davis's research explores cognitive behavioral therapy and its applications in modern psychology. She is committed to providing a supportive learning environment for her students.</p>
<a href="mailto:emily.davis@destinicollege.edu" class="contact-link"><i class="fas fa-envelope"></i> Email</a>
</div>
<!-- Add more faculty members as needed -->
</div>
</section>
<footer>
<div class="social-links">
<a href="https://www.facebook.com" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.twitter.com" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com" target="_blank"><i class="fab fa-linkedin-in"></i></a>
</div>
<p>© 2024 Destini College. All rights reserved. Developed by Ariane Vincent C-Techfriar</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>