Calculator Tools Calculator Tools
Create

JunyTonyTube - Watch and Share Videos

Sep 18, 2023

About this app

JunyTonyTube is a video sharing platform where you can watch and share your favorite videos with friends and family.

JunyTonyTube - Watch and Share Videos JunyTonyTube Video 1 10 views Video 2 20 views Video 3 15 views Video 4 12 views Video 5 18 views Video 6 25 views

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>JunyTonyTube - Watch and Share Videos</title>
<meta name="description" content="JunyTonyTube is a video sharing platform where you can watch and share your favorite videos with friends and family.">
<meta name="keywords" content="video sharing, watch videos, share videos, JunyTonyTube">

<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">

<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() {

});

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

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

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

.logo {
font-size: 48px;
color: #ff4b5c;
margin-bottom: 20px;
}

.search-bar {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.search-input {
width: 300px;
height: 40px;
padding: 10px;
border: none;
border-radius: 20px;
font-size: 16px;
outline: none;
}

.search-button {
background-color: #ff4b5c;
color: #fff;
border: none;
border-radius: 20px;
padding: 10px 20px;
margin-left: 10px;
font-size: 16px;
cursor: pointer;
outline: none;
}

.video-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.video-item {
background-color: #fff;
border-radius: 10px;
padding: 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
cursor: pointer;
text-align: center;
}

.video-item:hover {
transform: translateY(-5px);
}

.video-item img {
width: 100%;
height: 150px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 10px;
}

.video-item p {
margin: 0;
font-size: 14px;
color: #555;
}

.video-item span {
font-size: 12px;
color: #999;
}

@media (max-width: 768px) {
.video-list {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 576px) {
.video-list {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1 class="logo">JunyTonyTube</h1>
<div class="search-bar">
<input type="text" class="search-input" placeholder="Search videos...">
<button class="search-button"><i class="fa fa-search"></i></button>
</div>
<div class="video-list">
<div class="video-item">
<img src="https://via.placeholder.com/300" alt="Video">
<p>Video 1</p>
<span>10 views</span>
</div>
<div class="video-item">
<img src="https://via.placeholder.com/300" alt="Video">
<p>Video 2</p>
<span>20 views</span>
</div>
<div class="video-item">
<img src="https://via.placeholder.com/300" alt="Video">
<p>Video 3</p>
<span>15 views</span>
</div>
<div class="video-item">
<img src="https://via.placeholder.com/300" alt="Video">
<p>Video 4</p>
<span>12 views</span>
</div>
<div class="video-item">
<img src="https://via.placeholder.com/300" alt="Video">
<p>Video 5</p>
<span>18 views</span>
</div>
<div class="video-item">
<img src="https://via.placeholder.com/300" alt="Video">
<p>Video 6</p>
<span>25 views</span>
</div>
</div>
</div>
</body>
</html>