Calculator Tools Calculator Tools
Create

Plimplim TV

Jan 2, 2024

About this app

Plimplim TV - Encontre imagens de Mei Li

Plimplim TV Plimplim TV Encontre imagens de Mei Li Procurar Imagens

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>Plimplim TV</title>
<meta name="description" content="Plimplim TV - Encontre imagens de Mei Li">
<meta name="keywords" content="plimplim tv, imagens, mei li">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">

<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.

// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
// Function to search for images of Mei Li on Plimplim TV
function searchImages() {
// Get the search query
var searchQuery = "Mei Li";

// Encode the search query
var encodedQuery = encodeURIComponent(searchQuery);

// Build the search URL
var searchURL = "https://plimplim.tv/search?q=" + encodedQuery;

// Open the search URL in a new tab
window.open(searchURL, "_blank");
}

// Call the searchImages function
searchImages();
});

} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>

<style>
/* App CSS Goes Here */
body {
font-family: 'Roboto', sans-serif;
background-color: #f5f5f5;
}

#main-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}

h1 {
font-size: 42px;
font-weight: bold;
color: #333;
}

i {
font-size: 48px;
margin-bottom: 20px;
color: #ff6b6b;
}

p {
font-size: 18px;
color: #666;
}

button {
padding: 12px 24px;
font-size: 18px;
font-weight: bold;
color: #fff;
background-color: #ff6b6b;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}

button:hover {
background-color: #e74c3c;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<i class="fa fa-search"></i>
<h1>Plimplim TV</h1>
<p>Encontre imagens de Mei Li</p>
<button onclick="searchImages()">Procurar Imagens</button>
</div>
</body>
</html>