Files
Maphre-PLD-2026/contenido/concepto.html
T

28 lines
497 B
HTML
Raw Normal View History

2026-06-04 12:20:40 -06:00
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
.fullvideo {
width: 1365px;
height: 767px;
}
</style>
</head>
<body>
<section class="fullback w-100 h-100">
<video class="fullvideo" src="video/prueba_clip.mp4" buffered id="vdo" ></video>
</section>
</body>
</html>
<script type="text/javascript">
jQuery(document).ready(function($) {
$(".sco").addClass('hasvideo');
vdo = document.getElementById("vdo");
//vdo.play();
});
</script>