-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlink.html
More file actions
57 lines (55 loc) · 2.09 KB
/
Copy pathlink.html
File metadata and controls
57 lines (55 loc) · 2.09 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Collaborate & Connect</title>
<link href="https://fonts.googleapis.com/css?family=Poppins:400,600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="link.css">
</head>
<body>
<div class="mainWrapCC">
<div class="collabCardCC">
<span class="collabIconCC">🤝</span>
<div class="collabTitleCC">Collaborate & Connect</div>
<p class="collabDescCC">
Connect with us on LinkedIn to explore collaborations, mentorship, and networking opportunities.<br>
Let's innovate, learn, and grow together!
</p>
<div class="collabBtnRow">
<button class="collabBtnCC" onclick="openLinkedIn()">
🔗 Visit LinkedIn
</button>
</div>
<div id="linkMsgCC" class="collabFeedback">Opening LinkedIn...</div>
<div id="internMsgCC" class="collabFeedback">Opening Internship Portal...</div>
</div>
<hr class="collabSectionDivider">
<div class="internshipTipsCC">
<strong>Tips to Maximize Your Internship/Mentorship Experience:</strong>
<ul class="benefitListCC">
<li>Set clear goals and expectations with your mentor or manager.</li>
<li>Take initiative—seek out new learning opportunities.</li>
<li>Network with colleagues and participate in team events.</li>
<li>Request feedback regularly and work on improvements.</li>
<li>Document your achievements and new skills as you go.</li>
</ul>
</div>
</div>
<script>
function openLinkedIn() {
showMsg('linkMsgCC');
window.open('https://www.linkedin.com', '_blank');
}
function exploreInternships() {
showMsg('internMsgCC');
window.open('https://www.example.com/internships', '_blank');
}
function showMsg(id) {
var el = document.getElementById(id);
el.style.display = 'block';
setTimeout(() => { el.style.display = 'none'; }, 1800);
}
</script>
</body>
</html>