forked from Tacocat0254/FidHacks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInterview Prep.html
More file actions
64 lines (54 loc) · 1.48 KB
/
Interview Prep.html
File metadata and controls
64 lines (54 loc) · 1.48 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
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Interview Prep - LaunchPad</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="hiring.html">Hiring Process</a>
</nav>
<main>
<section class="feature">
<h1>Interview Prep</h1>
<section class="videos">
<h2>Tech Interview Prep Videos</h2>
<ul>
<div>
<a href="https://www.youtube.com/results?search_query=hiring+questions+for+the+tech" target="_blank">
▶️ Top Hiring Questions for Tech
</a>
</div>
<div>
<a href="https://www.linkedin.com/learning/search?keywords=hiring%20questions%20for%20the%20interview%20preparation%20for%20the%20tech%20peoples&promptType=LEARNER_TYPED" target="_blank">
📘 Top 50+ Technical Questions
</a>
</div>
</section>
</ul>
<section class="resources">
<h2>Interview Prep Resources</h2>
<ul>
<div>
<a href="https://www.coursera.org/articles/common-interview-questions" target="_blank">
🎓 Coursera: Technical Interview Courses
</a>
</div>
<div>
<a href="https://www.themuse.com/advice/interview-questions-and-answers" target="_blank">
💼 The Muse: Interview Advice & Answers
</a>
</div>
</section>
</ul>
</section>
</section>
</main>
<footer>
© 2025 LaunchPad. All rights reserved.
</footer>
</body>
</html>