Oddbods Horários
About this app
Confira os horários de exibição do Oddbods na Record, SBT e Globo
Oddbods Horários
Related apps
Put this on your site
Source
<!DOCTYPE html>
<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>Oddbods Horários</title>
<meta name="description" content="Confira os horários de exibição do Oddbods na Record, SBT e Globo">
<meta name="keywords" content="Oddbods, horários, exibição, Record, SBT, Globo">
<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 {
document.addEventListener("DOMContentLoaded", function() {
// Fetch the Oddbods schedule from the server
$.ajax({
url: "https://api.example.com/oddbods-schedule",
method: "GET",
success: function(response) {
// Display the schedule on the page
var schedule = response.schedule;
var html = '<h1>Horários de Exibição do Oddbods</h1>';
html += '<h2>Record</h2>';
html += '<ul>';
for (var i = 0; i < schedule.record.length; i++) {
html += '<li>' + schedule.record[i] + '</li>';
}
html += '</ul>';
html += '<h2>SBT</h2>';
html += '<ul>';
for (var i = 0; i < schedule.sbt.length; i++) {
html += '<li>' + schedule.sbt[i] + '</li>';
}
html += '</ul>';
html += '<h2>Globo</h2>';
html += '<ul>';
for (var i = 0; i < schedule.globo.length; i++) {
html += '<li>' + schedule.globo[i] + '</li>';
}
html += '</ul>';
$("#main-container").html(html);
},
error: function() {
$("#main-container").html('<p>Error fetching schedule</p>');
}
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background-color: #f8f9fa;
}
#main-container {
padding: 20px;
margin-top: 50px;
background-color: #fff;
border-radius: 5px;
}
h1 {
font-family: 'Roboto', sans-serif;
font-size: 24px;
font-weight: bold;
color: #333;
margin-bottom: 20px;
}
h2 {
font-family: 'Roboto', sans-serif;
font-size: 20px;
font-weight: bold;
color: #333;
margin-top: 30px;
margin-bottom: 10px;
}
ul {
list-style-type: none;
padding-left: 0;
}
li {
font-family: 'Roboto', sans-serif;
font-size: 16px;
color: #666;
margin-bottom: 5px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<!-- Schedule will be displayed here -->
</div>
</body>
</html>
NEW APPS
These are apps made by the community!