-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
838a567
commit d8e73d5
Showing
1 changed file
with
328 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,328 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Suren Uppal - Business Card</title> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/js/all.min.js"></script> | ||
<style> | ||
@import url('https://fonts.googleapis.com/css2?family=Avenir:wght@400;700&display=swap'); | ||
|
||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
font-family: 'Avenir', Arial, sans-serif; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
min-height: 100vh; | ||
background: linear-gradient(135deg, #f0f0f0 0%, #d9d9d9 100%); | ||
position: relative; | ||
overflow-x: hidden; | ||
} | ||
|
||
/* Animated background stripes */ | ||
body::before { | ||
content: ''; | ||
position: absolute; | ||
width: 300%; | ||
height: 300%; | ||
background: repeating-linear-gradient( | ||
45deg, | ||
#b3b3b3 0px, | ||
#808080 50px, | ||
#b3b3b3 100px, | ||
#cccccc 150px, | ||
#e6e6e6 200px | ||
); | ||
animation: stripe-animation 20s linear infinite; | ||
z-index: 0; | ||
} | ||
|
||
@keyframes stripe-animation { | ||
0% { | ||
transform: translate(-50%, -50%) rotate(0deg); | ||
} | ||
100% { | ||
transform: translate(-50%, -50%) rotate(360deg); | ||
} | ||
} | ||
|
||
.card { | ||
background: #000; | ||
border-radius: 40px; | ||
box-shadow: 0 30px 40px rgba(0,0,0,0.1); | ||
padding: 40px; | ||
width: 800px; | ||
display: flex; | ||
gap: 40px; | ||
position: relative; | ||
z-index: 1; | ||
} | ||
|
||
.info { | ||
flex: 1; | ||
} | ||
|
||
.name { | ||
font-size: 26px; | ||
font-weight: 800; | ||
text-transform: uppercase; | ||
color: #ff9900; | ||
margin: 0 0 10px 0; | ||
position: relative; | ||
} | ||
|
||
.image-qr-container { | ||
display: flex; | ||
align-items: center; | ||
gap: 20px; /* Adjusts spacing between image and QR code */ | ||
margin-bottom: 20px; | ||
} | ||
|
||
.contact { | ||
margin: 10px 0; | ||
font-size: 15px; | ||
color: #f4f1f1; | ||
} | ||
|
||
.contact p { | ||
transform: translateX(0); | ||
transition: transform 0.3s ease; | ||
} | ||
|
||
.contact p:hover { | ||
transform: translateX(10px); | ||
color: #f4774d; | ||
} | ||
|
||
.contact i { | ||
width: 20px; | ||
color: #ff9900; | ||
margin-right: 10px; | ||
} | ||
|
||
.ventures { | ||
margin: 30px 0; | ||
} | ||
|
||
.venture { | ||
margin: 20px 0; | ||
padding: 15px; | ||
border-radius: 40px; | ||
background: #ffffff; | ||
transition: all 0.9s ease; | ||
transform: skew(-11deg); | ||
border: 1px solid #ccc; | ||
} | ||
|
||
.venture:hover { | ||
transform: translateY(-5px) skew(-5deg); | ||
background: #0d0300; | ||
box-shadow: 0 10px 20px rgba(33, 105, 194, 0.1); | ||
animation: pulse 3s infinite; | ||
} | ||
|
||
.venture-name { | ||
font-weight: 700; | ||
color: #ffcc00; | ||
margin-bottom: 5px; | ||
} | ||
|
||
.venture-desc { | ||
font-size: 15px; | ||
color: #ff8400; | ||
line-height: 1.5; | ||
} | ||
|
||
.addresses { | ||
margin: 30px 0; | ||
font-size: 14px; | ||
color: #ffc801; | ||
} | ||
|
||
.address { | ||
margin: 15px 0; | ||
padding-left: 25px; | ||
position: relative; | ||
transition: all 0.3s ease; | ||
} | ||
|
||
.address:hover { | ||
color: #333; | ||
transform: translateX(10px); | ||
} | ||
|
||
.address i { | ||
position: absolute; | ||
left: 0; | ||
top: 3px; | ||
color: #ff9900; | ||
} | ||
|
||
.social { | ||
margin-top: 30px; | ||
display: flex; | ||
gap: 20px; | ||
} | ||
|
||
.social a { | ||
color: #00748b; | ||
text-decoration: none; | ||
transition: all 0.4s ease; | ||
transform-origin: center; | ||
} | ||
|
||
.social a:hover { | ||
transform: scale(1.3) rotate(360deg); | ||
color: #ff9900; | ||
text-shadow: 0 0 10px #ff9900; | ||
} | ||
|
||
#qrcode { | ||
width: 180px; | ||
height: 180px; | ||
padding: 10px; | ||
background: white; | ||
border-radius: 10px; | ||
box-shadow: 0 4px 12px rgba(0,0,0,0.1); | ||
transition: all 0.4s ease; | ||
} | ||
|
||
#qrcode:hover { | ||
transform: scale(1.1); | ||
box-shadow: 0 10px 30px rgba(0,0,0,0.1); | ||
} | ||
|
||
@media (max-width: 768px) { | ||
.card { | ||
flex-direction: column; | ||
width: 100%; | ||
padding: 20px; | ||
} | ||
|
||
#qrcode { | ||
align-self: center; | ||
} | ||
} | ||
|
||
@keyframes pulse { | ||
0% { | ||
box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.9); | ||
} | ||
70% { | ||
box-shadow: 0 0 0 20px rgba(255,153,0,0); | ||
} | ||
100% { | ||
box-shadow: 0 0 0 0 rgba(255,153,0,0); | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="card"> | ||
<div class="info"> | ||
<h1 class="name">Suren Uppal</h1> | ||
<div class="image-qr-container"> | ||
<img src="https://raw.githubusercontent.com/anthilltwirly/bizcard_suren/main/suren.jpeg" alt="Suren Uppal" style="width: 200px; height: auto;"> | ||
<div id="qrcode"></div> | ||
</div> | ||
|
||
<div class="contact"> | ||
<p><i class="fas fa-phone"></i>+91-9868700009</p> | ||
<p><i class="fas fa-phone"></i>+351-937036477</p> | ||
<p><i class="fas fa-envelope"></i>[email protected]</p> | ||
</div> | ||
|
||
<div class="ventures"> | ||
<div class="venture"> | ||
<div class="venture-name"> | ||
<a href="https://suoglobal.com" target="_blank" style="color: #ffcc00; text-decoration: none;"> | ||
SUO Global | ||
</a> | ||
</div> | ||
<div class="venture-desc">Our newest addition to the SUO umbrella, an UPTEC-incubated organisation focusing on SMEs, Startups & cross-border M&As.</div> | ||
</div> | ||
|
||
<div class="venture"> | ||
<div class="venture-name"> | ||
<a href="https://suolaw.com" target="_blank" style="color: #ffcc00; text-decoration: none;"> | ||
SUO Law | ||
</a> | ||
</div> | ||
<div class="venture-desc">Recognised as one of India's foremost policy framework & corporate law offices.</div> | ||
</div> | ||
|
||
<div class="venture"> | ||
<div class="venture-name"> | ||
<a href="https://suoconsulting.com" target="_blank" style="color: #ffcc00; text-decoration: none;"> | ||
SUO Consulting | ||
</a> | ||
</div> | ||
<div class="venture-desc">Our brain trust, a vibrant team of lawyers, marketers & business strategists.</div> | ||
</div> | ||
|
||
<div class="venture"> | ||
<div class="venture-name"> | ||
<a href="https://suojobs.com" target="_blank" style="color: #ffcc00; text-decoration: none;"> | ||
SUO Jobs | ||
</a> | ||
</div> | ||
<div class="venture-desc">Our first step into the international HR & Manpower domain - a SaaS platform that also served as the MVP for our recent international ventures.</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
<div class="addresses"> | ||
<div class="address"> | ||
<i class="fas fa-building"></i> | ||
<strong>SUO Global:</strong><br> | ||
Rua Dr Marcos da Cruz, 2033 - Perafita, 4455-482 Matosinhos | ||
</div> | ||
|
||
<div class="address"> | ||
<i class="fas fa-building"></i> | ||
<strong>SUO Law:</strong><br> | ||
D-45, Sector - 10, Noida, UP | ||
</div> | ||
|
||
<div class="address"> | ||
<i class="fas fa-building"></i> | ||
<strong>SUO Consulting:</strong><br> | ||
Wehntalerstrasse 551, 8046, Zurich | ||
</div> | ||
</div> | ||
|
||
<div class="social"> | ||
<a href="https://linkedin.com/company/suoglobal" target="_blank"> | ||
<i class="fab fa-linkedin fa-2x" title="SUO Global"></i> | ||
</a> | ||
<a href="https://linkedin.com/company/suo-law-offices" target="_blank"> | ||
<i class="fab fa-linkedin fa-2x" title="SUO Law Offices"></i> | ||
</a> | ||
<a href="https://linkedin.com/company/suoglobal" target="_blank"> | ||
<i class="fab fa-linkedin fa-2x" title="SUO Global"></i> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script> | ||
const qrContent = "https://anthilltwirly.github.io/bizcard_suren/index.html"; // Link to GitHub-hosted page | ||
new QRCode(document.getElementById("qrcode"), { | ||
text: qrContent, | ||
width: 180, | ||
height: 180, | ||
colorDark: "#333333", | ||
colorLight: "#ffffff", | ||
correctLevel: QRCode.CorrectLevel.H | ||
}); | ||
</script> | ||
</body> | ||
</html> |