-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinternshipsearch.html
More file actions
32 lines (31 loc) · 1.08 KB
/
internshipsearch.html
File metadata and controls
32 lines (31 loc) · 1.08 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
---
---
<html>
<head>
<title>Advanced Internship Search</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" type="text/css" href="general.css">
</head>
<body>
<input type="text" id="searchQuery" placeholder="Search for internships...">
<button onclick="searchInternships()">Search</button>
<table id="internshipTable" border="1">
<thead>
<tr>
<th>Name</th>
<th>Location</th>
<th>Industry</th>
<th>Size</th>
<th>Description</th>
<th>Website</th>
<th>Founded Year</th>
<th>CEO</th>
</tr>
</thead>
<tbody id="internshipList">
<!-- Internship rows will be inserted here -->
</tbody>
</table>
<script src="{{ site.baseurl }}/assets/js/internship-search.js"></script>
</body>
</html>