File size: 1,176 Bytes
b7c1283
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html>
<head>
    <title>Teacher Profile</title>

     <style>
        body {
            text-align: center;
        }


	ul {
            list-style-position: inside; /* Ensures bullets are within padding */
        	}

        li {
            padding-left: 20px; /* Adjust padding for desired alignment */
        }
    </style>
</head>

<body>

    <h1>My Profile</h1>

    <img src="Profile pic.jpg" alt="My Photo" width="200"> 

    <h2>Name: Akash deep</h2>
    <h3>Position: Associate  Professor</h3>
    <h3>Department: Computer Science & Egg</h3>

    <h4>Education</h4>
    <ul>
        <li>Ph.D. in Computer Science, University of XYZ</li>
        <li>M.Tech. in Computer Science, University of ABC</li>
        <li>B.Tech. in Computer Science, University of PQR</li>
    </ul>

    <h4>Experience</h4>
    <ul>
        <li>Teaching Experience: 15 years</li>
        <li>Research Interests: Artificial Intelligence, Machine Learning</li>
    </ul>

    <h4>Contact</h4>
    <p>
        <a href="mailto:akashdeep@pu.ac.in">akashdeep@pu.ac.in</a> 
        <br>
        Office: Room 213, Department of Computer Science, UIET
    </p>

</body>
</html>