-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtprofile.html
More file actions
94 lines (81 loc) · 3.53 KB
/
Copy pathtprofile.html
File metadata and controls
94 lines (81 loc) · 3.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
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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="tprofile.css">
<title>Teacher Profile - IIT Jammu</title>
</head>
<body>
<!-- Sidebar -->
<div class="sidebar" id="sidebar">
<ul>
<li><a href="#">Dashboard</a></li>
<li><a href="#">Profile</a></li>
<li><a href="#">Settings</a></li>
<li><a href="#">Log Out</a></li>
</ul>
</div>
<!-- Header -->
<header>
<img src="logo.png" width="300" height="auto" style="float-left">
</header>
<!-- Profile Section -->
<div class="container">
<div class="profile">
<!-- Profile Image -->
<div class="profile-image">
<img src="https://via.placeholder.com/200" alt="Teacher Photo">
</div>
<!-- Profile Info -->
<div class="profile-info">
<h2>Dr. Arun Jakhetiya</h2>
<p><strong>Position:</strong> Assistant Professor of Computer Science</p>
<p><strong>Department:</strong> Department of Computer Science</p>
<p><strong>Years of Experience:</strong> 10+ years</p>
<!-- Biography -->
<h3>Biography</h3>
<p style="font-family:Times New Roman">Dr. Arun Jakhetiya has been a faculty member at the Indian
Institute of Technology, Jammu for over 10 years. He specializes in Artificial Intelligence and
Machine Learning and has contributed to various research projects in the field. His teaching
philosophy is focused on making complex concepts accessible to students through real-world examples
and interactive learning. Dr. Jakhetiya holds a PhD in Computer Science from the prestigious
Cambridge University and has published numerous papers in academic journals.</p>
<!-- Contact Information -->
<div class="contact">
<h3>Contact Information</h3>
<p><strong>Email:</strong> arunjakhetiya111@iitjammu.edu</p>
<p><strong>Phone:</strong> +1 (555) 123-4567</p>
</div>
<!-- Courses Taught -->
<div class="courses">
<h3>Courses Taught</h3>
<ul>
<li>Introduction to Artificial Intelligence</li>
<li>Machine Learning</li>
<li>Data Structures and Algorithms</li>
<li>Advanced Programming Concepts</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="footer">
<p>© Indian Institute of Technology, Jammu - All rights reserved.</p>
</div>
<script>
// JavaScript to handle sidebar hover effect
const sidebar = document.getElementById('sidebar');
// When mouse enters the left side of the screen
document.body.addEventListener('mousemove', function(event) {
if (event.clientX < 50) {
sidebar.style.transform = 'translateX(0)';
} else {
sidebar.style.transform = 'translateX(-100%)';
}
});
</script>
</body>
</html>