-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml.txt
More file actions
30 lines (26 loc) · 855 Bytes
/
html.txt
File metadata and controls
30 lines (26 loc) · 855 Bytes
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
<div class="social-buttons">
<a href="https://github.com/Hariprashad-Ravikumar" target="_blank" rel="noopener noreferrer" class="social-button">
<img src="images/github-logo.png" alt="GitHub Logo" class="social-icon">
</a>
<a href="https://www.linkedin.com/in/hariprashad-ravikumar/" target="_blank" rel="noopener noreferrer" class="social-button">
<img src="images/linkedin-logo.png" alt="LinkedIn Logo" class="social-icon">
</a>
</div>
<style>
.research-figure {
float: left;
margin-right: 20px; /* Adjust the margin as needed */
}
.social-buttons {
display: flex;
justify-content: center;
align-items: flex-end;
margin-bottom: 20px;
}
.social-button {
margin-right: 10px;
}
.social-icon {
width: 80px;
height: 30px;
}