Spaces:
No application file
No application file
| <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> |