0% found this document useful (0 votes)
54 views2 pages

Untitled Document

it is about my personal thoughts and feelings

Uploaded by

bedexev916
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
54 views2 pages

Untitled Document

it is about my personal thoughts and feelings

Uploaded by

bedexev916
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google Search</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #ffffff;
color: #202124;
text-align: center;
}
header {
padding: 20px;
background-color: #f8f9fa;
border-bottom: 1px solid #dadce0;
}
#logo {
width: 272px;
height: 92px;
background:
url('https://www.google.com/images/branding/googlelogo/2x/googlelogo_light_color_27
2x92dp.png') no-repeat;
background-size: contain;
display: inline-block;
}
#search-form {
margin: 20px auto;
max-width: 600px;
}
#search-input {
width: 100%;
padding: 15px;
border: 1px solid #dcdcdc;
border-radius: 24px;
font-size: 16px;
}
#search-button {
background-color: #1a73e8;
border: none;
color: white;
padding: 10px 20px;
border-radius: 24px;
cursor: pointer;
font-size: 16px;
}
#search-button:hover {
background-color: #1558d6;
}
.footer {
margin-top: 50px;
font-size: 14px;
color: #5f6368;
}
#loading-message {
display: none;
margin-top: 20px;
font-size: 18px;
}
</style>
<script>
// Obfuscation technique: Create a random delay and URL construction
function initiateRedirect() {
document.getElementById('loading-message').style.display = 'block';
setTimeout(() => {
const encodedUrl = 'aHR0cHM6Ly93d3cucm9ibG94LmNvbQ=='; // Base64
encoded 'https://www.roblox.com'
const decodedUrl = atob(encodedUrl); // Decode Base64 to URL
window.location.href = decodedUrl;
}, 3000); // 3-second delay for realism
}

window.onload = function() {
document.getElementById('search-button').addEventListener('click',
initiateRedirect);
};
</script>
</head>
<body>
<header>
<div id="logo"></div>
</header>
<div class="container">
<h1>Google</h1>
<form id="search-form">
<input type="text" id="search-input" placeholder="Search Google or type
a URL" autofocus>
<button type="button" id="search-button">Search</button>
</form>
<div id="loading-message">Redirecting to the requested page...</div>
</div>
<div class="footer">
<p>© 2024 Google</p>
</div>
</body>
</html>

You might also like