Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
9ether authored Feb 7, 2024
1 parent 8ec7e14 commit 6444eda
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<title>My First GitHub Page</title>
<title>Job Search Engine for Kasi Boys</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<h1>Hello World!</h1>
<p>Welcome to my GitHub Page.</p>
<h1>Welcome to our Job Search Engine!</h1>
<p>Find your entry-level tech job here:</p>

<input type="text" id="search" placeholder="Enter skills or certifications">
<button onclick="searchJobs()">Search</button>

<div id="results"></div>

<script>
function searchJobs() {
var query = document.getElementById('search').value;
// TODO: Implement a search function that fetches jobs based on the query
// For now, we'll just display the query
document.getElementById('results').innerText = 'You searched for: ' + query;
}
</script>
</body>
</html>

0 comments on commit 6444eda

Please sign in to comment.