-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (106 loc) · 3.72 KB
/
index.html
File metadata and controls
125 lines (106 loc) · 3.72 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<title>InternPing.com</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- Header Section -->
<header>
<img src="images/logo.png" alt="InternPing Logo" id="logo">
<nav class="navbar">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Opportunities</a></li>
<!-- Log In Button -->
<li><a href="login.html" class="login-btn">Log In</a></li>
<!-- Sign Up Button -->
<li><a href="signup.html" class="signup-btn">Create Account</a></li>
</ul>
</nav>
</header>
<!-- Hero Section (Full Screen) -->
<section id="hero">
<h1>InternPing.</h1>
<h3>Opportunity? Ping it!</h3>
<button class="button-56" role="button">Get Started</button>
</section>
</section>
<!-- Internship Strip Section -->
<div class="internship-strip">
<span>Looking for a long-term commitment? How about a summer internship first? </span>
</div>
<!-- About Section -->
<section id="about">
<div class="about-container">
<h2>🚀 The Easiest Way to Land Your Dream Internship!</h2>
<p>
Say goodbye to endless job boards! With <strong>InternPing</strong>, finding internships is as easy as swiping.
<span style="color: #ff5c5c;">Swipe right</span> to ‘ping’ exciting opportunities, or <span style="color: #5c9eff;">swipe left</span> to pass.
It’s like <strong>Tinder for internships</strong> – fast, fun, and effortless!
<br><br>
<em>🔔 Start swiping now and never miss an opportunity again!</em>
</p>
</div>
</section>
<!-- Divider -->
<hr class="divider">
<!-- Profile Section -->
<section id="profile-swiping">
<div class="left-section">
<h3><b>My Profile</b></h3>
<!-- My Profile Tabs (To-Do, Resume, Account) -->
<div class="tabs">
<!-- To-Do Tab -->
<div class="tab" id="todo-tab">
<h4>To-Do</h4>
<div class="todo-container">
<!-- Input for new To-Do task -->
<input type="text" id="new-task" placeholder="Enter task..." />
<button id="add-task">Add Task</button>
<!-- List of To-Dos -->
<ul id="todo-list"></ul>
</div>
</div>
<!-- Resume Tab -->
<div class="tab" id="resume-tab">
<h4>Resume</h4>
<p>Upload your resume here.</p>
<input type="file" id="resume-upload" />
</div>
<!-- Account Tab -->
<div class="tab" id="account-tab">
<h4>Account</h4>
<p>Account details and settings.</p>
</div>
</div>
</div>
<!-- Cards Swiping Section -->
<div class="right-section">
<section id="cards-section">
<div class="card-container">
<!-- Card 1 -->
<div class="card" id="card1">
<h3>"Swipe now, intern later!"</h3>
<img id="card-image" src="images/card1.png" alt="Internship 1">
</div>
<!-- Buttons for Decline and Ping -->
<button id="decline-btn" class="action-btn">Decline</button>
<button id="ping-btn" class="action-btn">Ping!</button>
</div>
<h2 id="no-more-opportunities" style="display: none;">Oops, no more opportunities now!</h2>
</section>
</div>
<!-- Footer Section -->
<footer>
<div class="footer-container">
<div class="footer-contact">
<h4>Contact Us</h4>
<p>Email: support@internping.com</p>
</div>
</div>
<p class="footer-bottom">© 2025 InternPing. All rights reserved.</p>
</footer>
</html>