
1412<html lang="en">
3<head>
4<meta charset="UTF-8"/>
5<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
6<title>Ujicode</title>
7<style>
8/* CSS Style */
9</style>
10</head>
11<body>
12<!-- Main Element -->
13</body>
14</html>
width
dan height
akan merespon iframe dan object yang anda embed.101/* CSS Style */
2body{font-family:'Arial',sans-serif}
3.video-responsive{position:relative;padding-bottom:56.25%;height:0;overflow:hidden}
4.video-responsive iframe,.video-responsive object,.video-responsive embed {position:absolute;top:0;left:0;border:0;width:100%;height:100%}
5iframe{border:none;overflow:hidden}
6small{margin-left:0}
7​
8/* CSS Judul */
9.judul{bottom:0;padding:21px 55px 30px 34px;background:rgb(15,15,15);color:#FFFFFF}
10.other-title{font-size:40px;line-height:56px;font-weight:700;margin-bottom:3px;color:#FFC107}
iframe
elemen di halaman web Anda dan isikan src
atribut mengarah ke URL video YouTube. Gunakan juga atribut width
dan height
untuk menentukan dimensi pemain.71<!-- Main Element -->
2<div class="embed-video">
3<div class="video-responsive">
4<iframe allowfullscreen="" width="400" height="225" rel="nofollow" src="https://www.youtube.com/embed/TGt-vocYgv4">video</iframe>
5</div>
6<small>Duration: 1:09</small>
7</div>
YouTube akan menampilkan id (seperti:
TGt-vocYgv4
). Silahkan ambil id-nya saja. Anda dapat menggunakan contoh id ini atau id YouTube Anda, dan merujuk ke video Anda dalam kode HTML.141<!-- Main Element - Otomatis dan Mute: ?autoplay=1&mute=1 -->
2<div class="video-box">
3<div class="embed-video">
4<div class="video-responsive">
5<iframe allowfullscreen="" width="400" height="225" rel="nofollow" src="https://www.youtube.com/embed/TGt-vocYgv4?autoplay=1&mute=1">video</iframe>
6</div>
7<!-- Judul -->
8<div class='judul'>
9<div class='other-title'>Example Video</div>
10<small>Duration: 1:09</small>
11<p>Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
12</div>
13</div>
14</div>
0 Comments
Post a Comment