JunyTony Horário na Globo
About this app
Confira o horário do programa JunyTony na Globo de segunda a domingo.
JunyTony Horário na Globo Horário do JunyTony na Globo
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>JunyTony Horário na Globo</title>
<meta name="description" content="Confira o horário do programa JunyTony na Globo de segunda a domingo.">
<meta name="keywords" content="JunyTony, Globo, horário, programa, televisão">
<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() {
// Array to store the schedule of JunyTony on Globo
var schedule = [
{ day: 'Segunda-feira', time: '21:30' },
{ day: 'Terça-feira', time: '22:00' },
{ day: 'Quarta-feira', time: '20:45' },
{ day: 'Quinta-feira', time: '21:15' },
{ day: 'Sexta-feira', time: '20:30' },
{ day: 'Sábado', time: '19:00' },
{ day: 'Domingo', time: '18:30' }
];
// Function to display the schedule on the page
function displaySchedule() {
var scheduleContainer = document.getElementById('schedule-container');
// Loop through the schedule array and create HTML elements to display the schedule
for (var i = 0; i < schedule.length; i++) {
var scheduleItem = document.createElement('div');
scheduleItem.classList.add('schedule-item');
var day = document.createElement('span');
day.classList.add('day');
day.textContent = schedule[i].day;
var time = document.createElement('span');
time.classList.add('time');
time.textContent = schedule[i].time;
scheduleItem.appendChild(day);
scheduleItem.appendChild(time);
scheduleContainer.appendChild(scheduleItem);
}
}
// Call the function to display the schedule
displaySchedule();
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
/* App CSS Goes Here */
body {
background-color: #f5f5f5;
font-family: 'Arial', sans-serif;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.schedule-item {
margin-bottom: 10px;
padding: 10px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
}
.day {
font-size: 18px;
font-weight: bold;
}
.time {
font-size: 16px;
color: #888;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Horário do JunyTony na Globo</h1>
<div id="schedule-container"></div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!