|
6 | 6 | <title>About Me</title> |
7 | 7 | <style> |
8 | 8 | body { |
9 | | - font-family: Arial, sans-serif; |
| 9 | + font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; |
10 | 10 | background-color: #f4f4f9; |
11 | 11 | color: #333; |
12 | 12 | margin: 0; |
13 | 13 | padding: 0; |
14 | 14 | display: flex; |
15 | | - justify-content: center; |
16 | | - align-items: center; |
17 | | - height: 100vh; |
| 15 | + flex-direction: column; /* Stack elements vertically */ |
| 16 | + align-items: center; /* Center elements horizontally */ |
| 17 | + justify-content: center; /* Center elements vertically */ |
| 18 | + height: 100vh; /* Full viewport height */ |
18 | 19 | } |
| 20 | + |
19 | 21 | .about-me-container { |
20 | | - text-align: center; |
21 | 22 | background: #fff; |
22 | | - padding: 20px; |
| 23 | + padding: 10px; |
23 | 24 | border-radius: 10px; |
24 | 25 | box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); |
25 | | - max-width: 400px; |
| 26 | + max-width: 600px; |
| 27 | + width: 70%; |
| 28 | + display: flex; |
| 29 | + justify-content: space-between; /* For the internal div alignment */ |
| 30 | + } |
| 31 | + .content { |
| 32 | + flex: 60; |
| 33 | + text-align: center; |
| 34 | + padding: 10px; |
| 35 | + } |
| 36 | + .version-info { |
| 37 | + flex: 40; |
| 38 | + text-align: center; |
| 39 | + display: flex; |
| 40 | + flex-direction: column; |
| 41 | + justify-content: center; |
| 42 | + padding: 5px; |
| 43 | + } |
| 44 | + .divider { |
| 45 | + width: 0.5px; |
| 46 | + background: gray; |
| 47 | + margin: 10px 10px; |
26 | 48 | } |
27 | 49 | img { |
28 | 50 | border-radius: 50%; |
|
31 | 53 | object-fit: cover; |
32 | 54 | margin-bottom: 20px; |
33 | 55 | } |
34 | | - h1 { |
| 56 | + h1, h2 { |
35 | 57 | font-size: 24px; |
36 | 58 | margin-bottom: 10px; |
37 | 59 | } |
|
49 | 71 | border-radius: 25px; |
50 | 72 | font-size: 16px; |
51 | 73 | font-weight: bold; |
52 | | - margin-top: 20px; |
| 74 | + margin-top: 10px; |
53 | 75 | transition: background-color 0.3s ease; |
54 | 76 | } |
55 | 77 | .more-profile-links:hover { |
56 | 78 | background-color: #0056b3; |
57 | 79 | } |
| 80 | + ul { |
| 81 | + list-style-type: none; |
| 82 | + padding: 0; |
| 83 | + margin: 20px 0 20px 0; |
| 84 | + text-align: left; |
| 85 | + font-size: 15px; |
| 86 | + } |
| 87 | + ul li::before { |
| 88 | + content: "• "; |
| 89 | + color: #333; |
| 90 | + } |
| 91 | + .version-info h2 { |
| 92 | + font-size: 20px; |
| 93 | + margin-bottom: 10px; |
| 94 | + text-align: left; |
| 95 | + } |
| 96 | + |
| 97 | + .version-info img { |
| 98 | + max-width: 100%; /* Ensures the image doesn't exceed the container width */ |
| 99 | + height: auto; |
| 100 | + margin-bottom: 20px; /* Adds space below the image */ |
| 101 | + border-radius: 10px; /* Optional: Adds rounded corners */ |
| 102 | + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */ |
| 103 | + } |
58 | 104 | </style> |
59 | 105 | </head> |
60 | 106 | <body> |
61 | 107 | <div class="about-me-container"> |
62 | | - <a href="https://ibb.co/dpV3R54"> |
63 | | - <img src="https://i.ibb.co/M1tjmCk/profile.jpg" alt="profile"> |
64 | | - </a> |
65 | | - <h1>Avik Sarkar</h1> |
66 | | - <p> |
67 | | - I am a Test Engineer at Google with extensive experience in the tech industry, |
68 | | - starting my career at Samsung Research and contributing over 5 years. I hold a Bachelor's degree |
69 | | - from Comilla University (2018 graduate). |
70 | | - </p> |
71 | | - <p> |
72 | | - My technical expertise includes test automation, Bluetooth protocol development, and software quality assurance. |
73 | | - </p> |
74 | | - <a href="https://topmate.io/aviksarkar/" class="more-profile-links" target="_blank">Get 1:1 Career Mentorship</a> |
75 | | - <a href="https://linktr.ee/avik_sarkar" class="more-profile-links" target="_blank">View My Extended Profile</a> |
| 108 | + <!-- Current Content Section --> |
| 109 | + <div class="content"> |
| 110 | + <a href="https://ibb.co/dpV3R54"> |
| 111 | + <img src="https://i.ibb.co/M1tjmCk/profile.jpg" alt="profile"> |
| 112 | + </a> |
| 113 | + <h1>Avik Sarkar</h1> |
| 114 | + <p> |
| 115 | + I am a Test Engineer at Google with extensive experience in the tech industry, |
| 116 | + starting my career at Samsung Research and contributing over 5 years. I hold a Bachelor's degree |
| 117 | + from Comilla University (2016 graduate). |
| 118 | + </p> |
| 119 | + <p> |
| 120 | + My technical expertise includes test engineering, Bluetooth protocol development, and machine learning for software testing. |
| 121 | + </p> |
| 122 | + <a href="https://topmate.io/aviksarkar/" class="more-profile-links" target="_blank">Get 1:1 Career Mentorship</a> |
| 123 | + <a href="https://linktr.ee/avik_sarkar" class="more-profile-links" target="_blank">View My Extended Profile</a> |
| 124 | + </div> |
| 125 | + |
| 126 | + <!-- Divider Line --> |
| 127 | + <div class="divider"></div> |
| 128 | + |
| 129 | + <!-- Version Info Section --> |
| 130 | + <div class="version-info"> |
| 131 | + <a href="https://ibb.co/r7Xqsqm"> |
| 132 | + <img src="https://i.ibb.co/4m0CdC7/thanks.png" alt="thanks" border="0"> |
| 133 | + </a> |
| 134 | + <h2>Current Version: v2.1.0</h2> |
| 135 | + <ul> |
| 136 | + <li>Company-based problems filtering.</li> |
| 137 | + <li>Tabbed layout.</li> |
| 138 | + <li>About Me page.</li> |
| 139 | + </ul> |
| 140 | + <a href="https://github.com/ssavi-ict/LeetCode-Which-Company/blob/main/CHANGELOG.md" class="more-profile-links" target="_blank">Learn More</a> |
| 141 | + </div> |
76 | 142 | </div> |
77 | 143 | </body> |
78 | 144 | </html> |
0 commit comments