-
Notifications
You must be signed in to change notification settings - Fork 0
/
video.html
32 lines (28 loc) · 1.33 KB
/
video.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<!--idioma para judar o leitor de tela-->
<html lang="pt-BR">
<head>
<meta charset="utf-8">
<title> Meus vídeos</title>
</head>
<body>
<h1>Meus vídeos</h1>
<!-- emet {texto} mouse fora da enter -->
<!-- ctrl ; para comentar -->
<p>Veja alguns vídeos que gravei</p>
<video
height = "400"
width="2000"
controls>
<!-- source[src=videos/tocando_violao.mp4][type=video/mp4] -->
<source src=videos/tocando_violao.mp4 type=video/mp4 >
<!-- se não rodar irá mostra este texto -->
Seu navegador não é capasz de lidar com vídeos.
<!-- vídeos do yt não usar "videos"usar elementos iframe, não para atribuir outra página html a sua página -->
<!-- no próprio yt compartilhar -->
</video>
<!-- =https://www.youtube.com/embed/5mF4pKSi2SU][frameborder=0]iframe[src -->
<iframe src="https://www.youtube.com/embed/5mF4pKSi2SU" frameborder="0">
</iframe width="560" height="315" src="https://www.youtube.com/embed/5mF4pKSi2SU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</body>
</html>