tuugo.me Ads.txt file

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tuugo - Business and Product Search</title>
<style>
:root {
--primary-color: #4285f4;
--primary-dark: #3367d6;
--text-color: #333;
--bg-color: #ffffff;
--light-gray: #f7f7f7;
--border-color: #eaeaea;
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: var(--text-color);
background-color: var(--bg-color);
display: flex;
flex-direction: column;
min-height: 100vh;
line-height: 1.6;
}

.container {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
padding: 2rem;
}

.search-box {
width: 100%;
max-width: 550px;
text-align: center;
}

.logo {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
font-weight: 700;
letter-spacing: -1px;
}

.search-form {
display: flex;
flex-direction: column;
gap: 1rem;
}

.search-options {
display: flex;
justify-content: center;
gap: 1.5rem;
margin-bottom: 0.5rem;
}

.search-option {
display: flex;
align-items: center;
gap: 0.5rem;
}

.search-option label {
font-size: 0.95rem;
cursor: pointer;
}

.search-input {
display: flex;
width: 100%;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
border-radius: 8px;
overflow: hidden;
}

input[type="text"] {
flex: 1;
padding: 0.8rem 1rem;
border: 1px solid var(--border-color);
border-right: none;
font-size: 1rem;
outline: none;
transition: border 0.2s;
}

input[type="text"]:focus {
border-color: var(--primary-color);
}

button {
background-color: var(--primary-color);
color: white;
border: none;
padding: 0 1.5rem;
cursor: pointer;
font-size: 1rem;
font-weight: 500;
transition: background-color 0.2s;
}

button:hover {
background-color: var(--primary-dark);
}

footer {
background-color: var(--light-gray);
color: #666;
text-align: center;
padding: 1rem;
font-size: 0.9rem;
border-top: 1px solid var(--border-color);
}

footer a {
color: #666;
text-decoration: none;
}

footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<div class="search-box">
<div class="logo">Tuugo</div>
<form class="search-form" action="https://www.google.com/search" method="get">
<div class="search-options">
<div class="search-option">
<input type="radio" id="businesses" name="search_type" value="businesses" checked>
<label for="businesses">Businesses</label>
</div>
<div class="search-option">
<input type="radio" id="products" name="search_type" value="products">
<label for="products">Products</label>
</div>
</div>
<div class="search-input">
<input type="text" name="q" placeholder="Search for businesses or products..." required>
<input type="hidden" name="sitesearch" value="tuugo.me">
<button type="submit">Search</button>
</div>
</form>
</div>
</div>

<footer>
<p>&copy; 2025 Tuugo.me - Business and Product Search Directory</p>
<p><a href="https://planowaniestrategiczne.pl/">planowaniestrategiczne.pl</a> | <a href="https://wolfsmarketing.pl/">wolfsmarketing.pl</a> | <a href="https://faviconmedia.pl/">faviconmedia.pl</a></p>
</footer>

<script>
document.querySelector('.search-form').addEventListener('submit', function(e) {
e.preventDefault();

const searchType = document.querySelector('input[name="search_type"]:checked').value;
const searchQuery = document.querySelector('input[name="q"]').value;

let finalQuery = searchQuery;
if (searchType === 'businesses') {
finalQuery += ' business';
} else if (searchType === 'products') {
finalQuery += ' product';
}

window.location.href = `https://www.google.com/search?q=${encodeURIComponent(finalQuery)}`;
});
</script>
</body>
</html>

Ads.Txt Alerts - A trading name of Red Volcano Limited

Waterloo Buildings, Second Floor Rear, 53 London Road, Southampton, Hampshire, United Kingdom, SO15 2AD

© Red Volcano 2020. All Rights Reserved.