CODE:-
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search Bar</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f5f5f5;
text-align: center;
margin: 50px;
}
h1 {
color: #333;
}
#searchInput {
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
margin-right: 5px;
}
#searchButton {
padding: 10px 20px;
font-size: 16px;
background-color: #4CAF50;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
#searchButton:hover {
background-color: #45a049;
}
</style>
<script>
function redirectToSearch() {
var searchTerm = document.getElementById('searchInput').value;
window.location.href = 'https://poghaurs.com/4/6513360' + encodeURIComponent(searchTerm);
}
</script>
</head>
<body>
<h1>Search For Any Movie/Series You Want</h1>
<input type="text" id="searchInput" placeholder="Enter movie name">
<button id="searchButton" onclick="redirectToSearch()">Search</button>
</body>
</html>