Google Search URL Generator
Google Search URL Generator
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
text-align: center;
}
form {
display: flex;
flex-direction: column;
align-items: center;
}
label {
margin-top: 10px;
}
select {
margin-left: 10px;
}
button {
margin-top: 20px;
padding: 10px 20px;
border-radius: 5px;
background-color: #4285f4;
color: #fff;
border: none;
cursor: pointer;
}
#output {
margin-top: 20px;
text-align: center;
}
#output p {
margin-bottom: 10px;
font-weight: bold;
}
function generateURL() {
const query = document.getElementById('query').value;
const language = document.getElementById('language').value;
const baseURL = `https://www.google.com/search?q=${encodeURIComponent(query)}&hl=${language}`;
document.getElementById('url').value = baseURL;
}
Comments
Post a Comment