27 lines
749 B
HTML
27 lines
749 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Exemplo de script para iframe</title>
|
|
<style>
|
|
#myIframe {
|
|
width: 100%;
|
|
height: 500px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<iframe width=" 853" height="480" src="https://www.youtube.com/embed/bQBbRWo0j5g"
|
|
title="Relaxing Medieval Music - Bard/Tavern Ambience, Fantasy Celtic Music, Sleeping Tavern BGM"
|
|
frameborder="0"
|
|
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
|
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
|
|
|
|
|
</body>
|
|
|
|
</html> |