-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
121 lines (109 loc) · 6.29 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Portfolio of Arun Kumar Boddapati, a versatile full-stack bioinformatics scientist with expertise in NGS data analysis, pipeline development, and machine learning.">
<meta name="keywords" content="Arun Kumar Boddapati, bioinformatics, NGS, data analysis, machine learning, portfolio">
<title>Arun Kumar Boddapati | Portfolio</title>
<link rel="icon" href="images/bar-chart-line.svg" type="image/svg+xml">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- Bootstrap Icons CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
<!-- FontAwesome CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="styles.css">
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<!-- Custom JavaScript -->
<script src="scripts.js"></script>
</head>
<body>
<!--Nav-bar-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<span class="brand-name">𝗔B.</span>
<span class="dna-emoji">🧬</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="education.html">Education</a>
</li>
<li class="nav-item">
<a class="nav-link" href="experience.html">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link" href="skills.html">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="strengths.html">Strengths </a>
</li>
<li class="nav-item">
<a class="nav-link" href="publications.html">Publications</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="container mt-5 pt-5 main-content">
<section id="profile-card">
<div class="card">
<div class="card-header">
<div class="profile-picture-container">
<img src="images/profilepicture.jpg" alt="Profile Picture of Arun Kumar Boddapati" class="profile-picture">
</div>
</div>
<div class="card-body">
<h1>About</h1>
<p>
As a versatile full-stack bioinformatics scientist, I thrive in collaborative environments, having worked seamlessly across diverse teams, from Genomics Core to Scientific Computing. My commitment to meeting collaborators' expectations has been a cornerstone of my success, as evidenced by my track record of delivering high-quality results in alignment with their needs. With expertise spanning NGS data analysis, pipeline development, machine learning, and tool development, I adopt a comprehensive approach to multi-omics data. Through effective project management, team building, and mentoring, I drive initiatives that not only meet but exceed expectations while advancing the forefront of data science and biomedical research.
</p>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-container">
<div class="social-links">
<a href="https://www.linkedin.com/in/arunbodd/" target="_blank" class="social-icon linkedin">
<i class="fab fa-linkedin"></i> <!-- LinkedIn icon -->
</a>
<a href="https://github.com/arunbodd" target="_blank" class="social-icon github">
<i class="fab fa-github"></i> <!-- GitHub icon -->
</a>
<a href="https://scholar.google.co.in/citations?user=ni4A6KgAAAAJ&hl=en" target="_blank" class="social-icon google-scholar">
<i class="fab fa-google"></i> <!-- Google Scholar icon -->
</a>
</div>
<div class="copyright">
<p>© 2024 <a href="#" id="easter-egg" class="footer-link">Arun Boddapati</a>. All rights reserved.</p>
</div>
</div>
<!-- Easter Egg Modal -->
<div id="easter-egg-modal" class="fade">
<div id="easter-egg-content">
<span class="close">×</span>
<h2>Stay Curious!</h2>
<p>You got this!</p>
</div>
</div>
</footer>
</html>