-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (72 loc) · 1.98 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kruttika Dabke - Professional Profile</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #77aaff 3px solid;
}
header h1 {
text-align: center;
margin: 0;
font-size: 24px;
text-transform: uppercase;
}
.content {
padding: 20px;
background: #fff;
margin-top: 20px;
}
.content h2 {
margin-top: 0;
}
a {
color: #333;
text-decoration: none;
}
footer {
text-align: center;
padding: 20px;
margin-top: 20px;
background: #333;
color: #fff;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<img src="profile_image.jpg" alt="Profile Picture" style="width:200px;height:200px;">
<h2>Name:</h2>
<p>Kruttika Dabke, PhD</p>
<h2>Education:</h2>
<p>PhD in Biomedical sciences from Cedars-Sinai Medical Center</p>
<h2>Current Position:</h2>
<p>Research Scientist I at the Ellison Medical Institute</p>
<h2>LinkedIn:</h2>
<p><a href="https://www.linkedin.com/in/kruttika-dabke2023/" target="_blank" style="color: blue;">Visit my LinkedIn Profile</a></p>
</div>
</div>
<footer>
<p>© 2024 Kruttika Dabke.</p>
</footer>
</body>
</html>