-
Notifications
You must be signed in to change notification settings - Fork 0
/
connect.html
110 lines (99 loc) · 3.21 KB
/
connect.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Connect with Me</title>
<style>
body {
background: linear-gradient(to bottom, #808080, #ffffff);
color: #000000;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
display: flex;
justify-content: center;
align-items: center;
width: 80%;
max-width: 1200px;
}
.profile-section {
flex: 1;
text-align: center;
padding: 20px;
}
.profile-section img {
width: 150px;
height: 150px;
border-radius: 50%;
border: 3px solid #4CAF50;
}
.profile-section h2 {
margin-top: 15px;
font-size: 24px;
}
.connect-section {
flex: 2;
text-align: center;
padding: 20px;
}
.giphy-container {
width: 300px;
height: 300px;
margin: 0 auto;
position: relative;
border-radius: 3pc;
transform: translateX(-30px); /* Adjust the value as needed */
}
iframe {
position: absolute;
width: 100%;
height: 100%;
border: none;
border-radius: 3pc;
}
.connect-links {
margin-top: 20px;
}
.connect-links a {
display: inline-block;
margin: 10px;
padding: 10px 20px;
background-color: #4CAF50;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.connect-links a:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="container">
<div class="profile-section">
<img src="resources/mr_robot.jpeg" alt="Profile Picture">
<h2>Poralla Chandu</h2>
<p> The hardest choices require the strongest wills.</p>
</div>
<div class="connect-section">
<div class="giphy-container">
<div style="width:100%;height:0;padding-bottom:56%;position:relative;"><iframe src="https://giphy.com/embed/RbDKaczqWovIugyJmW" width="100%" height="100%" style="position:absolute" frameBorder="0" class="giphy-embed" allowFullScreen></iframe></div><p><a href="https://giphy.com/gifs/looneytunesworldofmayhem-world-of-mayhem-looney-tunes-ltwom-RbDKaczqWovIugyJmW"></a></p>
</div>
<div class="connect-links">
<h2>Connect with Me</h2>
<a href="mailto:[email protected]">Email Me</a>
<a href="https://www.linkedin.com/in/chandu-p-99b211304/" target="_blank">LinkedIn</a>
<a href="https://github.com/Chanduporalla" target="_blank">GitHub</a>
<a href="https://leetcode.com/u/porallachandu/" target="_blank">LeetCode</a>
</div>
</div>
</div>
</body>
</html>