akashdeepsharma commited on
Commit
b7c1283
·
verified ·
1 Parent(s): 758d7c0

profile.html

Browse files
Files changed (1) hide show
  1. profile.html +53 -0
profile.html ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Teacher Profile</title>
5
+
6
+ <style>
7
+ body {
8
+ text-align: center;
9
+ }
10
+
11
+
12
+ ul {
13
+ list-style-position: inside; /* Ensures bullets are within padding */
14
+ }
15
+
16
+ li {
17
+ padding-left: 20px; /* Adjust padding for desired alignment */
18
+ }
19
+ </style>
20
+ </head>
21
+
22
+ <body>
23
+
24
+ <h1>My Profile</h1>
25
+
26
+ <img src="Profile pic.jpg" alt="My Photo" width="200">
27
+
28
+ <h2>Name: Akash deep</h2>
29
+ <h3>Position: Associate Professor</h3>
30
+ <h3>Department: Computer Science & Egg</h3>
31
+
32
+ <h4>Education</h4>
33
+ <ul>
34
+ <li>Ph.D. in Computer Science, University of XYZ</li>
35
+ <li>M.Tech. in Computer Science, University of ABC</li>
36
+ <li>B.Tech. in Computer Science, University of PQR</li>
37
+ </ul>
38
+
39
+ <h4>Experience</h4>
40
+ <ul>
41
+ <li>Teaching Experience: 15 years</li>
42
+ <li>Research Interests: Artificial Intelligence, Machine Learning</li>
43
+ </ul>
44
+
45
+ <h4>Contact</h4>
46
+ <p>
47
+ <a href="mailto:akashdeep@pu.ac.in">akashdeep@pu.ac.in</a>
48
+ <br>
49
+ Office: Room 213, Department of Computer Science, UIET
50
+ </p>
51
+
52
+ </body>
53
+ </html>