-
Notifications
You must be signed in to change notification settings - Fork 0
/
links.html
105 lines (102 loc) · 4.34 KB
/
links.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
<link rel="manifest" href="./site.webmanifest">
<link rel="mask-icon" href="./safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#00a300">
<meta name="theme-color" content="#ffffff">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>Shardul Birje - Links</title>
<style>
body{
background: #f2f2f2;
}
img {
display: block;
max-width: 100%;
height: auto;
}
.image-container{
width: 10rem;
}
.link{
background: #303179;
text-align: center;
box-shadow:0 0 0 1px #011B56;
}
.link:hover{
background: #FFF;
color: #303179;
}
.link-icon{
width: 3rem;
}
a+a{
margin-top: 1em;
}
</style>
</head>
<body>
<div class="container">
<div class="image-container mx-auto my-2">
<img src="./Images/Shardul.png" class="img-fluid img-thumbnail rounded-circle border border-default" alt="profile-image">
</div>
<h4 class="text-center">Shardul Birje</h4>
<div class="links-container">
<a href="https://shardulbirje.netlify.app" class="d-block col-md-7 fs-6 fw-bold text-decoration-none link-light border border-danger mx-auto" target="_blank">
<div class="link d-flex justify-content-center align-items-center rounded py-1 px-2">
<!-- <div class="link-icon">
<img src="./Images/GitHub.png" alt="Github">
</div> -->
<p class="m-0 container w-100 py-2">Checkout my Online Portfolio</p>
</div>
</a>
<a href="https://github.com/shardul-b" class="d-block col-md-7 mx-auto fs-6 fw-bold text-decoration-none link-light" target="_blank" tabindex="0">
<div class="link d-flex justify-content-center align-items-center rounded py-1 px-2">
<!-- <div class="link-icon">
<img src="./Images/GitHub.png" alt="Github">
</div> -->
<p class="m-0 container py-2 w-100">GitHub</p>
</div>
</a>
<a href="https://www.linkedin.com/in/shardul-birje-210510194/" class="d-block col-md-7 mx-auto fs-6 fw-bold text-decoration-none link-light" target="_blank">
<div class="link d-flex justify-content-center align-items-center rounded py-1 px-2">
<!-- <div class="link-icon">
<img src="./Images/GitHub.png" alt="Github">
</div> -->
<p class="m-0 container w-100 py-2">LinkedIn Profile</p>
</div>
</a>
<a href="https://stackoverflow.com/users/11557264/shardul-birje" class="d-block col-md-7 mx-auto fs-6 fw-bold text-decoration-none link-light" target="_blank">
<div class="link d-flex justify-content-center align-items-center rounded py-1 px-2">
<!-- <div class="link-icon">
<img src="./Images/GitHub.png" alt="Github">
</div> -->
<p class="m-0 container w-100 py-2">StackOverflow Profile</p>
</div>
</a>
<a href="https://www.sololearn.com/profile/5742610" class="d-block col-md-7 mx-auto fs-6 fw-bold text-decoration-none link-light" target="_blank">
<div class="link d-flex justify-content-center align-items-center rounded py-1 px-2">
<p class="m-0 container w-100 py-2">Sololearn Profile</p>
</div>
</a>
<!-- <a href="https://github.com/shardul-b" class="d-block col-md-7 mx-auto fs-6 fw-bold text-decoration-none link-light" target="_blank">
<div class="link d-flex justify-content-center align-items-center rounded py-1 px-2">
<p class="m-0 container w-100 py-2">Medium Profile</p>
</div>
</a> -->
<a href="mailto:shardulbirje15@gmail.com" class="d-block fs-6 fw-bold col-md-7 mx-auto text-decoration-none link-light" target="_blank">
<div class="link d-flex justify-content-center align-items-center rounded py-1 px-2">
<p class="m-0 container w-100 py-2">Contact Me</p>
</div>
</a>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>